summaryrefslogtreecommitdiffstats
path: root/sc/inc/scextopt.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-02 17:31:01 +0200
committerNoel Grandin <noel@peralex.com>2013-10-04 09:09:52 +0200
commitf8f90a70ab58426058556c24c64db1f5a85a5574 (patch)
treef147ac3f7d6760c9e234b35fe5a7ada43617579a /sc/inc/scextopt.hxx
parentconvert sc/inc/t*.hxx from String to OUString (diff)
downloadcore-f8f90a70ab58426058556c24c64db1f5a85a5574.tar.gz
core-f8f90a70ab58426058556c24c64db1f5a85a5574.zip
convert sc/inc/s*.hxx from String to OUString
Change-Id: Ie5e439ac664e9725bad9366d31990279b411c475
Diffstat (limited to 'sc/inc/scextopt.hxx')
-rw-r--r--sc/inc/scextopt.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/scextopt.hxx b/sc/inc/scextopt.hxx
index 33e5a268b693..a4893cf17309 100644
--- a/sc/inc/scextopt.hxx
+++ b/sc/inc/scextopt.hxx
@@ -28,7 +28,7 @@
/** Extended settings for the document, used in import/export filters. */
struct ScExtDocSettings
{
- String maGlobCodeName; ///< Global codename (VBA module name).
+ OUString maGlobCodeName; ///< Global codename (VBA module name).
double mfTabBarWidth; ///< Width of the tabbar, relative to frame window width (0.0 ... 1.0).
sal_uInt32 mnLinkCnt; ///< Recursive counter for loading external documents.
SCTAB mnDisplTab; ///< Index of displayed sheet.
@@ -102,9 +102,9 @@ public:
/** @return the number of sheet codenames. */
SCTAB GetCodeNameCount() const;
/** @return the specified codename (empty string = no codename). */
- const String& GetCodeName( SCTAB nTab ) const;
+ const OUString& GetCodeName( SCTAB nTab ) const;
/** Appends a codename for a sheet. */
- void SetCodeName( SCTAB nTab, const String& rCodeName );
+ void SetCodeName( SCTAB nTab, const OUString& rCodeName );
private:
::std::auto_ptr< ScExtDocOptionsImpl > mxImpl;