summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2010-03-30 11:00:15 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2010-03-30 11:00:15 +0200
commitc70cd9ba9c801e2f1102398a01b2e97b10e4a404 (patch)
treeed2088d072e5e4412a26498023152e708858d19a /src
parent2cbe642c56035106d99db0c06fcc30dce2244897 (diff)
downloadfpGUI-c70cd9ba9c801e2f1102398a01b2e97b10e4a404.tar.xz
Replaced website address with a constant.
Diffstat (limited to 'src')
-rw-r--r--src/corelib/fpg_main.pas1
-rw-r--r--src/gui/messagedialog.inc4
2 files changed, 3 insertions, 2 deletions
diff --git a/src/corelib/fpg_main.pas b/src/corelib/fpg_main.pas
index adbcda67..871efe74 100644
--- a/src/corelib/fpg_main.pas
+++ b/src/corelib/fpg_main.pas
@@ -61,6 +61,7 @@ const
// version and name constants
{$I VERSION_FILE.inc} // this includes the auto generated: fpGUI_Version = xxx
fpGUIName = 'fpGUI Toolkit';
+ fpGUIWebsite = 'http://opensoft.homeip.net/fpgui/';
const
txtWordDelims: set of char = [' ', #9, #13, #10];
diff --git a/src/gui/messagedialog.inc b/src/gui/messagedialog.inc
index d40b5fca..5a6abfe8 100644
--- a/src/gui/messagedialog.inc
+++ b/src/gui/messagedialog.inc
@@ -381,8 +381,8 @@ begin
+ ' It provides single-source portability across Linux, MS Windows, *BSD'
+ ' and embedded devices like Embedded Linux and Windows CE.'
+ LineEnding + LineEnding
- + 'For more information, see the ' + fpGUIName + ' website at:'
- + ' http://opensoft.homeip.net/fpgui/';
+ + 'For more information, see the ' + fpGUIName + ' website at: '
+ + fpGUIWebsite;
dlg.PrepareLayout;
dlg.ShowModal;
finally