summaryrefslogtreecommitdiff
path: root/sc/inc/viewopti.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-02 16:17:29 +0200
committerNoel Grandin <noel@peralex.com>2013-10-04 09:09:45 +0200
commit89c749db5ad927a1283f7d58d842e097902429a8 (patch)
treebf5c43171eca413a67bb3be0baed710c634de74d /sc/inc/viewopti.hxx
parentf49ed16f7b5fac08714f276acbe1d0c80661385b (diff)
convert sc/inc/view*.hxx from String to OUString
Change-Id: I15930932205fc39322a9e88b1739a741781a0e96
Diffstat (limited to 'sc/inc/viewopti.hxx')
-rw-r--r--sc/inc/viewopti.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/viewopti.hxx b/sc/inc/viewopti.hxx
index ebf47833d71f..c5db568529f1 100644
--- a/sc/inc/viewopti.hxx
+++ b/sc/inc/viewopti.hxx
@@ -91,8 +91,8 @@ public:
void SetObjMode( ScVObjType eObj, ScVObjMode eMode ) { aModeArr[eObj] = eMode; }
ScVObjMode GetObjMode( ScVObjType eObj ) const { return aModeArr[eObj]; }
- void SetGridColor( const Color& rCol, const String& rName ) { aGridCol = rCol; aGridColName = rName;}
- Color GetGridColor( String* pStrName = NULL ) const;
+ void SetGridColor( const Color& rCol, const OUString& rName ) { aGridCol = rCol; aGridColName = rName;}
+ Color GetGridColor( OUString* pStrName = NULL ) const;
const ScGridOptions& GetGridOptions() const { return aGridOpt; }
void SetGridOptions( const ScGridOptions& rNew ) { aGridOpt = rNew; }
@@ -106,7 +106,7 @@ private:
bool aOptArr [MAX_OPT];
ScVObjMode aModeArr [MAX_TYPE];
Color aGridCol;
- String aGridColName;
+ OUString aGridColName;
ScGridOptions aGridOpt;
};