diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-06-30 13:49:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-06-30 20:40:15 +0100 |
commit | 0306e253fef4c25d4fe39ff9b5711c9487adc47b (patch) | |
tree | 10c71cd44b1d4899bd5b62495d13370df5993b4a /include/vcl/btndlg.hxx | |
parent | d70786a761025e7689a39d4026c8965d74962d4d (diff) |
XubString->OUString
Change-Id: I40ff06facc304630ccedd82d2f20b3573bdc5cb4
Diffstat (limited to 'include/vcl/btndlg.hxx')
-rw-r--r-- | include/vcl/btndlg.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/btndlg.hxx b/include/vcl/btndlg.hxx index 541109885079..12c7cbe394e1 100644 --- a/include/vcl/btndlg.hxx +++ b/include/vcl/btndlg.hxx @@ -84,14 +84,14 @@ public: sal_uInt16 GetCurButtonId() const { return mnCurButtonId; } - void AddButton( const XubString& rText, sal_uInt16 nId, sal_uInt16 nBtnFlags, long nSepPixel = 0 ); + void AddButton( const OUString& rText, sal_uInt16 nId, sal_uInt16 nBtnFlags, long nSepPixel = 0 ); void AddButton( StandardButtonType eType, sal_uInt16 nId, sal_uInt16 nBtnFlags, long nSepPixel = 0 ); void RemoveButton( sal_uInt16 nId ); void Clear(); - sal_uInt16 GetButtonId( sal_uInt16 nButton ) const; + sal_uInt16 GetButtonId( sal_uInt16 nButton ) const; PushButton* GetPushButton( sal_uInt16 nId ) const; - void SetButtonText( sal_uInt16 nId, const XubString& rText ); - void SetButtonHelpText( sal_uInt16 nId, const XubString& rText ); + void SetButtonText( sal_uInt16 nId, const OUString& rText ); + void SetButtonHelpText( sal_uInt16 nId, const OUString& rText ); void SetFocusButton( sal_uInt16 nId = BUTTONDIALOG_BUTTON_NOTFOUND ) { mnFocusButtonId = nId; } sal_uInt16 GetFocusButton() const { return mnFocusButtonId; } |