diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-08 14:41:44 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-15 09:11:32 +0200 |
commit | a1fba354b69e8251ff39acb138774a42136a4466 (patch) | |
tree | 3d2896f7917351987bdbefd1f3c1113643ae164b /include | |
parent | 710be6c8d423f82cdc6c936e1a9ff12f2bb4f3e6 (diff) |
convert include/svtools/table/tablemodel.hxx from String to OUString
Change-Id: Ic28157c29ace0730bcfaf072f529028732aac79e
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/table/tablemodel.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svtools/table/tablemodel.hxx b/include/svtools/table/tablemodel.hxx index cae54efb0ef0..5250bf23f8d8 100644 --- a/include/svtools/table/tablemodel.hxx +++ b/include/svtools/table/tablemodel.hxx @@ -200,21 +200,21 @@ namespace svt { namespace table @see setName */ - virtual String getName() const = 0; + virtual OUString getName() const = 0; /** sets a new name for the column @see getName */ - virtual void setName( const String& _rName ) = 0; + virtual void setName( const OUString& _rName ) = 0; /** retrieves the help text to be displayed for the column. */ - virtual String getHelpText() const = 0; + virtual OUString getHelpText() const = 0; /** sets a new the help text to be displayed for the column. */ - virtual void setHelpText( const String& i_helpText ) = 0; + virtual void setHelpText( const OUString& i_helpText ) = 0; /** determines whether the column can be interactively resized |