diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-02-25 17:26:42 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-02-26 22:14:43 +0100 |
commit | 28488c94d697f169baaf4c67bf2c71287b503c43 (patch) | |
tree | 124245dfe4d87a722fe441ddee97ec8dbfb5bc06 /include | |
parent | 94fa259e769b44f2c2ea7f1667b28f2c07489668 (diff) |
convert corner case warningboxes with checkboxes
Change-Id: Ic8b58b792236a733b6687148eac5c06bbf734acf
Reviewed-on: https://gerrit.libreoffice.org/50325
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/msgbox.hxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/vcl/msgbox.hxx b/include/vcl/msgbox.hxx index 5df7a5f81437..16fa979015b7 100644 --- a/include/vcl/msgbox.hxx +++ b/include/vcl/msgbox.hxx @@ -57,13 +57,10 @@ class VCL_DLLPUBLIC MessBox : public ButtonDialog VclPtr<FixedImage> mpFixedImage; Image maImage; bool mbHelpBtn; - bool mbCheck; MessBoxStyle mnMessBoxStyle; protected: OUString maMessText; - VclPtr<CheckBox> mpCheckBox; - OUString maCheckBoxText; SAL_DLLPRIVATE void ImplInitButtons(); SAL_DLLPRIVATE void ImplPosControls(); @@ -81,10 +78,6 @@ public: void SetImage( const Image& rImage ) { maImage = rImage; } - void SetCheckBoxText( const OUString& rText ) { maCheckBoxText = rText;} - void SetCheckBoxState( bool bCheck ); - bool GetCheckBoxState() const; - virtual Size GetOptimalSize() const override; }; @@ -99,8 +92,6 @@ public: WarningBox( vcl::Window* pParent, MessBoxStyle nStyle, WinBits n, const OUString& rMessage ); - void SetDefaultCheckBoxText(); - static Image const & GetStandardImage(); static OUString GetStandardText(); }; |