diff options
author | Ivan Timofeev <timofeev.i.s@gmail.com> | 2013-08-15 16:56:09 +0400 |
---|---|---|
committer | Ivan Timofeev <timofeev.i.s@gmail.com> | 2013-08-15 16:56:46 +0400 |
commit | 1edb495a45fde1d788b409fd1a9a839bd370c426 (patch) | |
tree | 3f113ad6c8232843816ea1bebe4daa5fd8a842f9 /include | |
parent | 7cab33ab66e08f5757635b2989f83bbb7f9ebc67 (diff) |
convert GetName/Title/Description methods to OUString
Change-Id: Id16a2b29b1d6cf02b94cc6c423e2475a9cbeb8a3
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/svxdlg.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/svxdlg.hxx b/include/svx/svxdlg.hxx index a1b8f2d8b8ae..83639e0e45cd 100644 --- a/include/svx/svxdlg.hxx +++ b/include/svx/svxdlg.hxx @@ -183,7 +183,7 @@ public: class AbstractSvxNameDialog :public VclAbstractDialog //add for SvxNameDialog { public: - virtual void GetName( String& rName ) = 0; + virtual void GetName( OUString& rName ) = 0; virtual void SetCheckNameHdl( const Link& rLink, bool bCheckImmediately = false ) = 0; virtual void SetEditHelpId(const OString&) = 0; //from class Window @@ -197,15 +197,15 @@ public: class AbstractSvxObjectNameDialog :public VclAbstractDialog { public: - virtual void GetName(String& rName) = 0; + virtual void GetName(OUString& rName) = 0; virtual void SetCheckNameHdl(const Link& rLink, bool bCheckImmediately = false) = 0; }; class AbstractSvxObjectTitleDescDialog :public VclAbstractDialog { public: - virtual void GetTitle(String& rTitle) = 0; - virtual void GetDescription(String& rDescription) = 0; + virtual void GetTitle(OUString& rTitle) = 0; + virtual void GetDescription(OUString& rDescription) = 0; }; /////////////////////////////////////////////////////////////////////////////////////////////// |