summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;