diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-04 14:10:55 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-08 10:03:07 +0200 |
commit | 54b4ab3526fd15455229e9282b73db2c2614fcf6 (patch) | |
tree | 429f978e56a0ccfed3d49eead6fb099d83a52b21 /sc | |
parent | 47f7e4c4aa993c7c6d061f0de24274ed6f9d440c (diff) |
convert sc/inc/cellsuno.hxx from String to OUString
Change-Id: Ifd3ccb29b24e3ee8a2a2f140418250e0eac40acc
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/cellsuno.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/unoobj/cellsuno.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/cellsuno.hxx b/sc/inc/cellsuno.hxx index d1ff40410a84..a7f71af6e2f9 100644 --- a/sc/inc/cellsuno.hxx +++ b/sc/inc/cellsuno.hxx @@ -830,7 +830,7 @@ private: private: OUString GetInputString_Impl(bool bEnglish) const; OUString GetOutputString_Impl() const; - void SetString_Impl(const String& rString, sal_Bool bInterpret, sal_Bool bEnglish); + void SetString_Impl(const OUString& rString, sal_Bool bInterpret, sal_Bool bEnglish); double GetValue_Impl() const; void SetValue_Impl(double fValue); com::sun::star::table::CellContentType GetResultType_Impl(); diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx index 659e3a65da80..31ecee7ed9f0 100644 --- a/sc/source/ui/unoobj/cellsuno.cxx +++ b/sc/source/ui/unoobj/cellsuno.cxx @@ -6244,7 +6244,7 @@ OUString ScCellObj::GetOutputString_Impl() const return aVal; } -void ScCellObj::SetString_Impl(const String& rString, sal_Bool bInterpret, sal_Bool bEnglish) +void ScCellObj::SetString_Impl(const OUString& rString, sal_Bool bInterpret, sal_Bool bEnglish) { ScDocShell* pDocSh = GetDocShell(); if ( pDocSh ) |