diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-19 17:16:29 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-04 08:48:50 +0200 |
commit | 9b3408424c56324add07261e7d0527e2352d41be (patch) | |
tree | c9421b91ac68b1182b443186cab7571d2d502af5 | |
parent | 338454dfea59781ba6a7bc69d5527d8992b38e01 (diff) |
convert sc/.../validate.hxx from String to OUString
Change-Id: I8fcda79f5fbb4a79621566fabab0eb28ca15c57b
-rw-r--r-- | sc/source/ui/inc/validate.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sc/source/ui/inc/validate.hxx b/sc/source/ui/inc/validate.hxx index 9616363f3823..5cac401f817b 100644 --- a/sc/source/ui/inc/validate.hxx +++ b/sc/source/ui/inc/validate.hxx @@ -208,11 +208,11 @@ private: formula::RefEdit maEdMax; FixedText maFtHint; /// Hint text for cell range validity. - String maStrMin; - String maStrMax; - String maStrValue; - String maStrRange; - String maStrList; + OUString maStrMin; + OUString maStrMax; + OUString maStrValue; + OUString maStrRange; + OUString maStrList; sal_Unicode mcFmlaSep; /// List separator in formulas. Point maRefEditPos; @@ -243,10 +243,10 @@ private: void TidyListBoxes(); public: - sal_uInt16 GetAllowEntryPos(); - String GetMinText(); - void SetupRefDlg(); - void RemoveRefDlg(); + sal_uInt16 GetAllowEntryPos(); + OUString GetMinText(); + void SetupRefDlg(); + void RemoveRefDlg(); }; |