diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-09-01 22:26:37 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-09-02 12:14:51 +0100 |
commit | 2f76c093f5e7150914c27d49d5275c885a6ff8dc (patch) | |
tree | d8a2c221407342b7e27a259e6d643d2e81e100b1 /include | |
parent | 05d4077b724f91fca736d3c3fd64f28e304d7172 (diff) |
map deletable to WB_CLOSEABLE
Change-Id: I13fd6878c3443055428f01bb946caaaf7e6dddb0
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/dialog.hxx | 2 | ||||
-rw-r--r-- | include/vcl/floatwin.hxx | 2 | ||||
-rw-r--r-- | include/vcl/syswin.hxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/dialog.hxx b/include/vcl/dialog.hxx index 804de4afd368..14d303cef14c 100644 --- a/include/vcl/dialog.hxx +++ b/include/vcl/dialog.hxx @@ -65,7 +65,7 @@ protected: public: SAL_DLLPRIVATE bool IsInClose() const { return mbInClose; } - virtual void doDeferredInit(bool bResizable) SAL_OVERRIDE; + virtual void doDeferredInit(bool bResizable, bool bCloseable) SAL_OVERRIDE; protected: explicit Dialog( WindowType nType ); diff --git a/include/vcl/floatwin.hxx b/include/vcl/floatwin.hxx index 67626273c016..02ae4cacb3aa 100644 --- a/include/vcl/floatwin.hxx +++ b/include/vcl/floatwin.hxx @@ -117,7 +117,7 @@ public: SAL_DLLPRIVATE void ImplEndPopupMode( sal_uInt16 nFlags = 0, sal_uLong nFocusId = 0 ); SAL_DLLPRIVATE Rectangle& ImplGetItemEdgeClipRect(); SAL_DLLPRIVATE bool ImplIsInPrivatePopupMode() const { return mbInPopupMode; } - virtual void doDeferredInit(bool bResizable) SAL_OVERRIDE; + virtual void doDeferredInit(bool bResizable, bool bCloseable) SAL_OVERRIDE; public: explicit FloatingWindow(Window* pParent, WinBits nStyle = WB_STDFLOATWIN); diff --git a/include/vcl/syswin.hxx b/include/vcl/syswin.hxx index 168a0eb4a116..d901ccda9c17 100644 --- a/include/vcl/syswin.hxx +++ b/include/vcl/syswin.hxx @@ -276,7 +276,7 @@ public: SAL_DLLPRIVATE bool hasPendingLayout() const { return maLayoutTimer.IsActive(); } - virtual void doDeferredInit(bool bResizable); + virtual void doDeferredInit(bool bResizable, bool bCloseable); }; #endif // INCLUDED_VCL_SYSWIN_HXX |