summaryrefslogtreecommitdiff
path: root/include/vcl/dialog.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-10-18 16:00:25 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-10-19 16:28:53 +0100
commit6f7cd8f4238060249de11c4ec7d167c439f7a781 (patch)
treeec0679ec4271a773368fbe6a21081995741a91d4 /include/vcl/dialog.hxx
parent7320d7a4a4dd0657f2d650a6f580ad399529f0f1 (diff)
add menubar support to vclbuilder
Change-Id: Ibe9a820f178a955eec21b96796e346d785b835b6
Diffstat (limited to 'include/vcl/dialog.hxx')
-rw-r--r--include/vcl/dialog.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/vcl/dialog.hxx b/include/vcl/dialog.hxx
index f0a418939cde..5e4398546d04 100644
--- a/include/vcl/dialog.hxx
+++ b/include/vcl/dialog.hxx
@@ -50,7 +50,6 @@ private:
bool mbInSyncExecute;
bool mbInClose;
bool mbModalMode;
- bool const mbForceBorderWindow;
InitFlag const mnInitFlag; // used for deferred init
VclPtr<VclButtonBox> mpActionArea;
@@ -83,7 +82,7 @@ public:
protected:
explicit Dialog( WindowType nType );
- explicit Dialog( vcl::Window* pParent, const OUString& rID, const OUString& rUIXMLDescription, WindowType nType, InitFlag eFlag = InitFlag::Default, bool bBorder = false );
+ explicit Dialog( vcl::Window* pParent, const OUString& rID, const OUString& rUIXMLDescription, WindowType nType, InitFlag eFlag = InitFlag::Default );
virtual void Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, DrawFlags nFlags ) override;
virtual void settingOptimalLayoutSize(Window *pBox) override;
@@ -170,7 +169,7 @@ public:
class VCL_DLLPUBLIC ModalDialog : public Dialog
{
public:
- explicit ModalDialog( vcl::Window* pParent, const OUString& rID, const OUString& rUIXMLDescription, bool bBorder = false );
+ explicit ModalDialog( vcl::Window* pParent, const OUString& rID, const OUString& rUIXMLDescription );
protected:
using Window::Show;