diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-09-01 07:17:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-09-02 12:14:51 +0100 |
commit | 05d4077b724f91fca736d3c3fd64f28e304d7172 (patch) | |
tree | 5e7b6b1a86fccb274a92a3c31b6f97d389234337 /include/vcl/dialog.hxx | |
parent | 2f1eed483930a96a40a7013a9338a7e0869fc960 (diff) |
rearrange matters to get FloatingWindows working loaded from .ui
Change-Id: I099c810533c4590ee3182e1edf27e9038ed44f30
Diffstat (limited to 'include/vcl/dialog.hxx')
-rw-r--r-- | include/vcl/dialog.hxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/vcl/dialog.hxx b/include/vcl/dialog.hxx index 94ea7d66e680..804de4afd368 100644 --- a/include/vcl/dialog.hxx +++ b/include/vcl/dialog.hxx @@ -39,7 +39,6 @@ class VclButtonBox; class VCL_DLLPUBLIC Dialog : public SystemWindow { private: - Window* mpDialogParent; Dialog* mpPrevExecuteDlg; DialogImpl* mpDialogImpl; long mnMousePositioned; @@ -47,7 +46,6 @@ private: bool mbOldSaveBack; bool mbInClose; bool mbModalMode; - bool mbIsDefferedInit; VclButtonBox* mpActionArea; VclBox* mpContentArea; @@ -67,8 +65,7 @@ protected: public: SAL_DLLPRIVATE bool IsInClose() const { return mbInClose; } - SAL_DLLPRIVATE void doDeferredInit(bool bResizable); - SAL_DLLPRIVATE bool isDeferredInit() const { return mbIsDefferedInit; } + virtual void doDeferredInit(bool bResizable) SAL_OVERRIDE; protected: explicit Dialog( WindowType nType ); |