summaryrefslogtreecommitdiff
path: root/prototypes
diff options
context:
space:
mode:
Diffstat (limited to 'prototypes')
-rw-r--r--prototypes/mdi/fpg_mdi.pas8
1 files changed, 2 insertions, 6 deletions
diff --git a/prototypes/mdi/fpg_mdi.pas b/prototypes/mdi/fpg_mdi.pas
index b5e769b6..ac127a33 100644
--- a/prototypes/mdi/fpg_mdi.pas
+++ b/prototypes/mdi/fpg_mdi.pas
@@ -103,9 +103,7 @@ procedure TfpgMDIChildForm.TitleMouseUp(Sender: TObject; AButton: TMouseButton;
AShift: TShiftState; const AMousePos: TPoint);
begin
FIsMouseDown := False;
- {$IFDEF MSWINDOWS}
- ReleaseMouse;
- {$ENDIF}
+ Panel1.ReleaseMouse;
end;
procedure TfpgMDIChildForm.TitleMouseDown(Sender: TObject; AButton: TMouseButton;
@@ -114,9 +112,7 @@ begin
FMDIWorkArea.ActiveWindow := self;
FIsMouseDown := True;
FLastPos := Panel1.WindowToScreen(self, AMousePos);
- {$IFDEF MSWINDOWS}
- CaptureMouse;
- {$ENDIF}
+ Panel1.CaptureMouse;
end;
procedure TfpgMDIChildForm.TitleMouseExit(Sender: TObject);