diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-03 13:13:14 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-04 09:10:07 +0200 |
commit | 83eb6bc562b6de5b8f7c22c9f408e68d6566d739 (patch) | |
tree | 33e28a735d9afee853cf7d815a92b2890e305e43 /sc/inc/lookupcache.hxx | |
parent | dc2710a57eb7d65c03df40a54fafe0fb4a7e29d9 (diff) |
convert sc/inc/l*.hxx from String to OUString
Change-Id: I52f9989cead1fc84e659fe0e4180a9c85388355d
Diffstat (limited to 'sc/inc/lookupcache.hxx')
-rw-r--r-- | sc/inc/lookupcache.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/lookupcache.hxx b/sc/inc/lookupcache.hxx index aa8f4f7e698b..9bfc5417dbe7 100644 --- a/sc/inc/lookupcache.hxx +++ b/sc/inc/lookupcache.hxx @@ -63,7 +63,7 @@ public: union { double mfVal; - const String * mpStr; + const OUString *mpStr; }; bool mbAlloc : 1; bool mbString : 1; @@ -94,7 +94,7 @@ public: mfVal = fVal; } - void setString( const String * pStr ) + void setString( const OUString * pStr ) { deleteString(); mbAlloc = false; @@ -102,11 +102,11 @@ public: mpStr = pStr; } - void setString( const String & rStr ) + void setString( const OUString & rStr ) { deleteString(); mbAlloc = mbString = true; - mpStr = new String( rStr); + mpStr = new OUString( rStr); } bool operator==( const QueryCriteria & r ) const |