summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-20 15:06:40 +0200
committerNoel Grandin <noel@peralex.com>2013-10-04 08:48:54 +0200
commitf164e012bdf16f31aa85bab8f799362b6f28a6b8 (patch)
tree3f55a3d3f895fbbcd45c8dc796fb2096a69f65a6
parent311d673f9d61db7687d21620252841883da4d7bf (diff)
convert sc/.../solvrdlg.hxx from String to OUString
Change-Id: Ie34c9119ed8c59c224d941e1cfa889185a536d37
-rw-r--r--sc/source/ui/inc/solvrdlg.hxx12
-rw-r--r--sc/source/ui/miscdlgs/solvrdlg.cxx2
2 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/ui/inc/solvrdlg.hxx b/sc/source/ui/inc/solvrdlg.hxx
index 871bde469145..bc48636793da 100644
--- a/sc/source/ui/inc/solvrdlg.hxx
+++ b/sc/source/ui/inc/solvrdlg.hxx
@@ -70,21 +70,21 @@ private:
ScAddress theFormulaCell;
ScAddress theVariableCell;
- String theTargetValStr;
+ OUString theTargetValStr;
ScDocument* pDoc;
const SCTAB nCurTab;
formula::RefEdit* pEdActive;
sal_Bool bDlgLostFocus;
- const String errMsgInvalidVar;
- const String errMsgInvalidForm;
- const String errMsgNoFormula;
- const String errMsgInvalidVal;
+ const OUString errMsgInvalidVar;
+ const OUString errMsgInvalidForm;
+ const OUString errMsgNoFormula;
+ const OUString errMsgInvalidVal;
#ifdef _SOLVRDLG_CXX
void Init();
- sal_Bool CheckTargetValue( String& rStrVal );
+ sal_Bool CheckTargetValue( const OUString& rStrVal );
void RaiseError( ScSolverErr eError );
DECL_LINK( BtnHdl, PushButton* );
diff --git a/sc/source/ui/miscdlgs/solvrdlg.cxx b/sc/source/ui/miscdlgs/solvrdlg.cxx
index 0a4d6554fbd7..e418f9905830 100644
--- a/sc/source/ui/miscdlgs/solvrdlg.cxx
+++ b/sc/source/ui/miscdlgs/solvrdlg.cxx
@@ -192,7 +192,7 @@ sal_Bool ScSolverDlg::IsRefInputMode() const
//----------------------------------------------------------------------------
-sal_Bool ScSolverDlg::CheckTargetValue( String& rStrVal )
+sal_Bool ScSolverDlg::CheckTargetValue( const OUString& rStrVal )
{
sal_uInt32 n1 = 0;
double n2;