diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-04 11:03:40 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-08 10:03:04 +0200 |
commit | 295e40a7dfa0e28efc1879541164301b7dd9eb55 (patch) | |
tree | 054ee5eadfb467b7a2e78494c380cf80e71aff9d /sc/inc | |
parent | ffec34406885e05ce5e120f72ec9ec51665d290a (diff) |
convert sc/inc/editutil.hxx from String to OUString
Change-Id: Ie6e272e97fab5d3fa29d533ac23f93f737dc33c6
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/editutil.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/inc/editutil.hxx b/sc/inc/editutil.hxx index bf296c067821..2d3d4ce36cc2 100644 --- a/sc/inc/editutil.hxx +++ b/sc/inc/editutil.hxx @@ -167,10 +167,10 @@ public: /// Overwritten method to be able to apply defaults already set void SetText( const OUString& rText ); /// Current defaults are not applied, new defaults are applied - void SetTextNewDefaults( const String& rText, + void SetTextNewDefaults( const OUString& rText, const SfxItemSet& rDefaults, sal_Bool bRememberCopy = sal_True ); /// Current defaults are not applied, new defaults are applied - void SetTextNewDefaults( const String& rText, + void SetTextNewDefaults( const OUString& rText, SfxItemSet* pDefaults, sal_Bool bTakeOwnership = sal_True ); /// Paragraph attributes that are not defaults are copied to @@ -198,10 +198,10 @@ public: struct ScHeaderFieldData { - String aTitle; // title or file name (if no title) - String aLongDocName; // path and file name - String aShortDocName; // pure file name - String aTabName; + OUString aTitle; // title or file name (if no title) + OUString aLongDocName; // path and file name + OUString aShortDocName; // pure file name + OUString aTabName; Date aDate; Time aTime; long nPageNo; |