diff options
Diffstat (limited to 'include/vcl/dockwin.hxx')
-rw-r--r-- | include/vcl/dockwin.hxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/vcl/dockwin.hxx b/include/vcl/dockwin.hxx index 48413b4c9584..5351f11403fd 100644 --- a/include/vcl/dockwin.hxx +++ b/include/vcl/dockwin.hxx @@ -35,7 +35,6 @@ struct DockingData bool mbLivemode; // in bool mbInteractive; // in - DockingData() {}; DockingData( const Point& rPt, const Rectangle& rRect, bool b) : maMousePos( rPt ), maTrackRect( rRect ), mbFloating( b ), mbLivemode( false ), mbInteractive( true ) {}; @@ -47,7 +46,6 @@ struct EndDockingData bool mbFloating; // in bool mbCancelled; // in - EndDockingData() {}; EndDockingData( const Rectangle& rRect, bool b, bool bCancelled ) : maWindowRect( rRect ), mbFloating( b ), mbCancelled( bCancelled ) {}; @@ -58,7 +56,6 @@ struct EndPopupModeData Point maFloatingPos; // in bool mbTearoff; // in - EndPopupModeData() {}; EndPopupModeData( const Point& rPos, bool bTearoff ) : maFloatingPos( rPos ), mbTearoff( bTearoff ) {}; |