summaryrefslogtreecommitdiff
path: root/src/corelib/fpg_constants.pas
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/fpg_constants.pas')
-rw-r--r--src/corelib/fpg_constants.pas17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/corelib/fpg_constants.pas b/src/corelib/fpg_constants.pas
index d93e5208..d83f855b 100644
--- a/src/corelib/fpg_constants.pas
+++ b/src/corelib/fpg_constants.pas
@@ -30,7 +30,7 @@ unit fpg_constants;
interface
uses
- SysUtils, fpg_base;
+ SysUtils;
resourcestring
@@ -92,21 +92,20 @@ const
ONE_MILISEC = 1/MSecsPerDay;
DEFAULT_HINT_PAUSE = 500; // in milliseconds
+
+ { Default fpGUI help viewer }
+ FPG_HELPVIEWER = 'docview';
+
+ FPG_CONFIG_DIR = 'fpgui_toolkit' + PathDelim;
+ FPG_BOOKMARKS_FILE = 'bookmarks.ini';
+ FPG_BOOKMARK_SECTION = 'bookmarks';
-{ This is so that when we support LTR and RTL languages, the colon will be
- added at the correct place. }
-function fpgAddColon(const AText: TfpgString): TfpgString;
implementation
-function fpgAddColon(const AText: TfpgString): TfpgString;
-begin
- { TODO : Check language direction and add colon at appropriate end. }
- result := AText + ':';
-end;
end.