diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-07-30 09:42:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-07-30 10:58:56 +0100 |
commit | 83195e2821f24c182098740fb506db215185917f (patch) | |
tree | a952613b29c2173370e2aa32b9f2920f90c69e57 /include/vcl | |
parent | 36efa8c6a8ffcad1b285caa4cfda138a900becf7 (diff) |
XubString->OUString for msgbox
Change-Id: Ieee6547b36534d0a31b6df8e00c44f1ebbaeae9a
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/msgbox.hxx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/include/vcl/msgbox.hxx b/include/vcl/msgbox.hxx index 93689f806fba..099bc5504adf 100644 --- a/include/vcl/msgbox.hxx +++ b/include/vcl/msgbox.hxx @@ -38,12 +38,12 @@ class VCL_DLLPUBLIC MessBox : public ButtonDialog protected: VclMultiLineEdit* mpVCLMultiLineEdit; FixedImage* mpFixedImage; - XubString maMessText; + OUString maMessText; Image maImage; - sal_Bool mbHelpBtn; + sal_Bool mbHelpBtn; CheckBox* mpCheckBox; - XubString maCheckBoxText; - sal_Bool mbCheck; + OUString maCheckBoxText; + sal_Bool mbCheck; SAL_DLLPRIVATE void ImplInitMessBoxData(); SAL_DLLPRIVATE void ImplInitButtons(); @@ -54,20 +54,20 @@ protected: public: MessBox( Window* pParent, WinBits nStyle, - const XubString& rTitle, const XubString& rMessage ); + const OUString& rTitle, const OUString& rMessage ); MessBox( Window* pParent, const ResId& rResId ); ~MessBox(); virtual void StateChanged( StateChangedType nStateChange ); - void SetMessText( const XubString& rText ) { maMessText = rText; } - const XubString& GetMessText() const { return maMessText; } + void SetMessText( const OUString& rText ) { maMessText = rText; } + const OUString& GetMessText() const { return maMessText; } void SetImage( const Image& rImage ) { maImage = rImage; } const Image& GetImage() const { return maImage; } - void SetCheckBoxText( const XubString& rText ) { maCheckBoxText = rText;} - const XubString& GetCheckBoxText() const { return maCheckBoxText;} + void SetCheckBoxText( const OUString& rText ) { maCheckBoxText = rText;} + const OUString& GetCheckBoxText() const { return maCheckBoxText;} void SetCheckBoxState( sal_Bool bCheck ); sal_Bool GetCheckBoxState() const; @@ -101,7 +101,7 @@ private: public: WarningBox( Window* pParent, WinBits nStyle, - const XubString& rMessage ); + const OUString& rMessage ); WarningBox( Window* pParent, const ResId& rResId ); void SetDefaultCheckBoxText(); @@ -120,7 +120,7 @@ private: public: ErrorBox( Window* pParent, WinBits nStyle, - const XubString& rMessage ); + const OUString& rMessage ); ErrorBox( Window* pParent, const ResId& rResId ); static Image GetStandardImage(); @@ -137,7 +137,7 @@ private: public: QueryBox( Window* pParent, WinBits nStyle, - const XubString& rMessage ); + const OUString& rMessage ); QueryBox( Window* pParent, const ResId& rResId ); void SetDefaultCheckBoxText(); |