summaryrefslogtreecommitdiff
path: root/src/corelib/gfx_msgqueue.inc
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2007-08-18 22:45:51 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2007-08-18 22:45:51 +0000
commitb1881506db03ae8c30647ad6812d26348b6e3f3a (patch)
tree70c875632be90309e3359b5ab8de8ed8a702f511 /src/corelib/gfx_msgqueue.inc
parente7a953faecc77e8c6c45509518a8b74692aceeed (diff)
downloadfpGUI-b1881506db03ae8c30647ad6812d26348b6e3f3a.tar.xz
* Moved and renamed gui_popupwindows.pas unit from GUI to CoreLib.
* X11: Completed popup window support. * GUI: Amended TfpgComboBox to rather use a popup window for the dropdown portion of the control. * The previous change fixed the issue in the FileDialog where you couldn't select a combo box item with the mouse.
Diffstat (limited to 'src/corelib/gfx_msgqueue.inc')
-rw-r--r--src/corelib/gfx_msgqueue.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/gfx_msgqueue.inc b/src/corelib/gfx_msgqueue.inc
index bcf247b2..58eeaa16 100644
--- a/src/corelib/gfx_msgqueue.inc
+++ b/src/corelib/gfx_msgqueue.inc
@@ -52,7 +52,7 @@ begin
Elem.Prev.Next := Elem.Next;
end;
-function pgfAllocateMessage: PfpgMessageRec;
+function fpgAllocateMessage: PfpgMessageRec;
var
e: TMessageListElement;
begin
@@ -111,7 +111,7 @@ begin
if Dest = nil then
Exit; //==>
- p := pgfAllocateMessage;
+ p := fpgAllocateMessage;
if p <> nil then
begin
p^.MsgCode := MsgCode;
@@ -130,7 +130,7 @@ begin
if Dest = nil then
Exit; //==>
- p := pgfAllocateMessage;
+ p := fpgAllocateMessage;
if p <> nil then
begin
p^.MsgCode := MsgCode;