summaryrefslogtreecommitdiff
path: root/src/corelib/x11
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2011-01-10 12:51:52 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2011-01-10 13:00:34 +0200
commit912541f487ef8356352a452c005097623df0cf00 (patch)
tree7fe3cc823dff41fae870dcdc3320d3f061b3d09e /src/corelib/x11
parent20a8b28526e297e5190b842527b755432381241a (diff)
downloadfpGUI-912541f487ef8356352a452c005097623df0cf00.tar.xz
DoWaitWindowMessage() defined as virtual abstract in fpg_base
* All fpGUI backends must override it as supply an implementation. * Moved DowaitWindowMessage() implementations to the protected section in the GDI and X11 backends.
Diffstat (limited to 'src/corelib/x11')
-rw-r--r--src/corelib/x11/fpg_x11.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/x11/fpg_x11.pas b/src/corelib/x11/fpg_x11.pas
index afde5ed2..8ae27ec1 100644
--- a/src/corelib/x11/fpg_x11.pas
+++ b/src/corelib/x11/fpg_x11.pas
@@ -311,11 +311,11 @@ type
InputContext: PXIC;
FLastKeySym: TKeySym; // Used for KeyRelease event
function DoGetFontFaceList: TStringList; override;
+ procedure DoWaitWindowMessage(atimeoutms: integer); override;
function MessagesPending: boolean; override;
public
constructor Create(const AParams: string); override;
destructor Destroy; override;
- procedure DoWaitWindowMessage(atimeoutms: integer);
procedure DoFlush;
function GetScreenWidth: TfpgCoord; override;
function GetScreenHeight: TfpgCoord; override;