summaryrefslogtreecommitdiff
path: root/src/corelib
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2009-02-04 14:00:45 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2009-02-04 14:00:45 +0000
commitfa6745346420b9d4df1f5bbb32132e26cf0ce000 (patch)
tree7a3de1c26bba577eb5638e86fb34e63e5e91f061 /src/corelib
parent837d6ef5259b48a86af26d551a611285f6fffa38 (diff)
downloadfpGUI-fa6745346420b9d4df1f5bbb32132e26cf0ce000.tar.xz
* CustomGrid now calls Update instead of Repaint. This now conforms to BeginUpdate..EndUpdate requests.
* StringGrid now has a Clear method.
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/fpg_base.pas3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/corelib/fpg_base.pas b/src/corelib/fpg_base.pas
index 15270468..7c89f40a 100644
--- a/src/corelib/fpg_base.pas
+++ b/src/corelib/fpg_base.pas
@@ -81,7 +81,7 @@ const
FPGM_MOVE = 16;
FPGM_POPUPCLOSE = 17;
FPGM_HINTTIMER = 18;
- FPGM_CUSTOM = 50000;
+ FPGM_USER = 50000;
FPGM_KILLME = High(Integer);
// The special keys, based on the well-known keyboard scan codes
@@ -603,7 +603,6 @@ implementation
uses
fpg_main, // needed for fpgApplication & fpgNamedColor
fpg_utils, // needed for fpgFileList
- fpg_constants,
typinfo;