summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-18 15:16:24 +0200
committerNoel Grandin <noel@peralex.com>2014-02-19 13:05:04 +0200
commit3fc0be868b6fed7633843ffed4d74c7b93a5f12b (patch)
tree3e565b439f4c8c61d903077a9a727075751530ea /sc
parent1a2aaa65325c26a50000adcab73e0a81b9004522 (diff)
sal_Bool->bool
Change-Id: I5e1386f8cb2711d23f06e044a64f7eadf8f3faa5
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/inc/solvrdlg.hxx4
-rw-r--r--sc/source/ui/miscdlgs/solvrdlg.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/inc/solvrdlg.hxx b/sc/source/ui/inc/solvrdlg.hxx
index e4efd8ecf717..f54ca3f485f7 100644
--- a/sc/source/ui/inc/solvrdlg.hxx
+++ b/sc/source/ui/inc/solvrdlg.hxx
@@ -75,7 +75,7 @@ private:
ScDocument* pDoc;
const SCTAB nCurTab;
formula::RefEdit* pEdActive;
- sal_Bool bDlgLostFocus;
+ bool bDlgLostFocus;
const OUString errMsgInvalidVar;
const OUString errMsgInvalidForm;
const OUString errMsgNoFormula;
@@ -84,7 +84,7 @@ private:
#ifdef _SOLVRDLG_CXX
void Init();
- sal_Bool CheckTargetValue( const OUString& rStrVal );
+ 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 1ad2c2c49f86..8f98d41ab605 100644
--- a/sc/source/ui/miscdlgs/solvrdlg.cxx
+++ b/sc/source/ui/miscdlgs/solvrdlg.cxx
@@ -192,7 +192,7 @@ bool ScSolverDlg::IsRefInputMode() const
//----------------------------------------------------------------------------
-sal_Bool ScSolverDlg::CheckTargetValue( const OUString& rStrVal )
+bool ScSolverDlg::CheckTargetValue( const OUString& rStrVal )
{
sal_uInt32 n1 = 0;
double n2;