diff options
Diffstat (limited to 'svtools/inc')
-rw-r--r-- | svtools/inc/svtools/filectrl.hxx | 6 | ||||
-rw-r--r-- | svtools/inc/svtools/filedlg.hxx | 7 | ||||
-rw-r--r-- | svtools/inc/svtools/fileview.hxx | 4 |
3 files changed, 5 insertions, 12 deletions
diff --git a/svtools/inc/svtools/filectrl.hxx b/svtools/inc/svtools/filectrl.hxx index 14dcc75e615e..e1c2b04e5cf4 100644 --- a/svtools/inc/svtools/filectrl.hxx +++ b/svtools/inc/svtools/filectrl.hxx @@ -86,7 +86,7 @@ public: void SetText( const XubString& rStr ); XubString GetText() const; - UniString GetSelectedText() const { return maEdit.GetSelected(); } + rtl::OUString GetSelectedText() const { return maEdit.GetSelected(); } void SetSelection( const Selection& rSelection ) { maEdit.SetSelection( rSelection ); } Selection GetSelection() const { return maEdit.GetSelection(); } @@ -95,10 +95,6 @@ public: sal_Bool IsReadOnly() const { return maEdit.IsReadOnly(); } //------ - //manipulate the Button-Text: - XubString GetButtonText() const { return maButtonText; } - - //------ //use this to manipulate the dialog bevore executing it: void SetDialogCreatedHdl( const Link& rLink ) { maDialogCreatedHdl = rLink; } const Link& GetDialogCreatedHdl() const { return maDialogCreatedHdl; } diff --git a/svtools/inc/svtools/filedlg.hxx b/svtools/inc/svtools/filedlg.hxx index e774fa559f93..6fa7333fde35 100644 --- a/svtools/inc/svtools/filedlg.hxx +++ b/svtools/inc/svtools/filedlg.hxx @@ -46,17 +46,14 @@ private: ImpSvFileDlg* pImpFileDlg; // Implementation Link aOKHdlLink; // Link to OK-Handler -protected: - UniString aDfltExt; // Default - Extension - public: PathDialog( Window* pParent, WinBits nWinStyle = 0, sal_Bool bCreateDir = sal_True ); ~PathDialog(); virtual long OK(); - void SetPath( const UniString& rNewPath ); - UniString GetPath() const; + void SetPath( const rtl::OUString& rNewPath ); + rtl::OUString GetPath() const; void SetOKHdl( const Link& rLink ) { aOKHdlLink = rLink; } const Link& GetOKHdl() const { return aOKHdlLink; } diff --git a/svtools/inc/svtools/fileview.hxx b/svtools/inc/svtools/fileview.hxx index ec40c0519447..c5ec78ead9fb 100644 --- a/svtools/inc/svtools/fileview.hxx +++ b/svtools/inc/svtools/fileview.hxx @@ -215,9 +215,9 @@ protected: struct SvtContentEntry { sal_Bool mbIsFolder; - UniString maURL; + rtl::OUString maURL; - SvtContentEntry( const UniString& rURL, sal_Bool bIsFolder ) : + SvtContentEntry( const rtl::OUString& rURL, sal_Bool bIsFolder ) : mbIsFolder( bIsFolder ), maURL( rURL ) {} }; |