summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-11 15:55:52 +0200
committerNoel Grandin <noel@peralex.com>2014-02-12 09:01:10 +0200
commita5b444d21fe53bf80ffb6e5973c528f63e381fd6 (patch)
treeef947a007ddee831004004d03a2d09cec1642a41 /sc
parent8c16c5bcfbb2844663a5b054cb55ef81a8c01dbb (diff)
sal_Bool->bool
Change-Id: Idcb3f9960b158518c21bf3023bae75691a0a22d1
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/fmtuno.hxx6
-rw-r--r--sc/source/ui/unoobj/fmtuno.cxx2
2 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/fmtuno.hxx b/sc/inc/fmtuno.hxx
index 9e7f5258069a..78e954c1ac6b 100644
--- a/sc/inc/fmtuno.hxx
+++ b/sc/inc/fmtuno.hxx
@@ -217,12 +217,12 @@ private:
ScAddress aSrcPos;
OUString aPosString; // formula position as text
sal_uInt16 nValMode; // enum ScValidationMode
- sal_Bool bIgnoreBlank;
+ bool bIgnoreBlank;
sal_Int16 nShowList;
- sal_Bool bShowInput;
+ bool bShowInput;
OUString aInputTitle;
OUString aInputMessage;
- sal_Bool bShowError;
+ bool bShowError;
sal_uInt16 nErrorStyle; // enum ScValidErrorStyle
OUString aErrorTitle;
OUString aErrorMessage;
diff --git a/sc/source/ui/unoobj/fmtuno.cxx b/sc/source/ui/unoobj/fmtuno.cxx
index 628941a8acb0..425a72fdf465 100644
--- a/sc/source/ui/unoobj/fmtuno.cxx
+++ b/sc/source/ui/unoobj/fmtuno.cxx
@@ -705,7 +705,7 @@ void ScTableValidationObj::ClearData_Impl()
{
nMode = SC_COND_NONE;
nValMode = SC_VALID_ANY;
- bIgnoreBlank = sal_True;
+ bIgnoreBlank = true;
nShowList = sheet::TableValidationVisibility::UNSORTED;
bShowInput = false;
bShowError = false;