summaryrefslogtreecommitdiff
path: root/src/corelib
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2010-06-29 14:06:14 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2010-06-29 14:06:14 +0200
commitfb55482007a8aefc29cc4a4c498549a165d786b8 (patch)
treec0df388b74654400880a5e91a65da66e749ee468 /src/corelib
parent825196334c4295fbf2f6e75df211e03916d2bc82 (diff)
downloadfpGUI-fb55482007a8aefc29cc4a4c498549a165d786b8.tar.xz
bug fix: Calendar Combo year & month popups didn't work under Windows.
This was caused due to a few longs of old and outdated hack code. Removed the hack, and the problem is gone! :-)
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/fpg_popupwindow.pas5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/corelib/fpg_popupwindow.pas b/src/corelib/fpg_popupwindow.pas
index 85d6c58f..fdb78b66 100644
--- a/src/corelib/fpg_popupwindow.pas
+++ b/src/corelib/fpg_popupwindow.pas
@@ -342,11 +342,6 @@ procedure TfpgPopupWindow.Close;
begin
HandleClose;
PopupListRemove(self);
- { TODO : Move this out to the GDI specific unit. }
- {$IFDEF MSWINDOWS}
- if uFirstPopup <> nil then
- uFirstPopup^.Widget.CaptureMouse;
- {$ENDIF}
end;