summaryrefslogtreecommitdiff
path: root/sc/qa
diff options
context:
space:
mode:
Diffstat (limited to 'sc/qa')
-rw-r--r--sc/qa/extras/sceditfieldobj-cell.cxx2
-rw-r--r--sc/qa/extras/sceditfieldobj-header.cxx2
-rw-r--r--sc/qa/unit/bugfix-test.cxx2
-rw-r--r--sc/qa/unit/copy_paste_test.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/sc/qa/extras/sceditfieldobj-cell.cxx b/sc/qa/extras/sceditfieldobj-cell.cxx
index a0533e34bf86..6258b8a95173 100644
--- a/sc/qa/extras/sceditfieldobj-cell.cxx
+++ b/sc/qa/extras/sceditfieldobj-cell.cxx
@@ -132,7 +132,7 @@ uno::Reference<uno::XInterface> ScEditFieldObj_Cell::init()
uno::Reference<text::XTextCursor> xCursor = xText->createTextCursor();
uno::Reference<text::XTextRange> xRange(xCursor, UNO_QUERY_THROW);
uno::Reference<text::XTextContent> xContent(mxField, UNO_QUERY_THROW);
- xText->insertTextContent(xRange, xContent, sal_False);
+ xText->insertTextContent(xRange, xContent, false);
}
return mxField;
}
diff --git a/sc/qa/extras/sceditfieldobj-header.cxx b/sc/qa/extras/sceditfieldobj-header.cxx
index d4e87bda0f96..4a5cb25fb1e1 100644
--- a/sc/qa/extras/sceditfieldobj-header.cxx
+++ b/sc/qa/extras/sceditfieldobj-header.cxx
@@ -118,7 +118,7 @@ uno::Reference<uno::XInterface> ScEditFieldObj_Header::init()
uno::Reference<text::XTextCursor> xCursor = xText->createTextCursor();
uno::Reference<text::XTextRange> xRange(xCursor, UNO_QUERY_THROW);
uno::Reference<text::XTextContent> xContent(mxField, UNO_QUERY_THROW);
- xText->insertTextContent(xRange, xContent, sal_False);
+ xText->insertTextContent(xRange, xContent, false);
xPropSet->setPropertyValue("RightPageHeaderContent", uno::makeAny(xHeaderContent));
diff --git a/sc/qa/unit/bugfix-test.cxx b/sc/qa/unit/bugfix-test.cxx
index 02969755d823..9a22d48abef2 100644
--- a/sc/qa/unit/bugfix-test.cxx
+++ b/sc/qa/unit/bugfix-test.cxx
@@ -180,7 +180,7 @@ void ScFiltersTest::testTdf91979()
Sequence < beans::PropertyValue > args(1);
args[0].Name = "Hidden";
- args[0].Value <<= sal_True;
+ args[0].Value <<= true;
uno::Reference< lang::XComponent > xComponent = xDesktop->loadComponentFromURL(
"private:factory/scalc",
diff --git a/sc/qa/unit/copy_paste_test.cxx b/sc/qa/unit/copy_paste_test.cxx
index 575fbaeb4c98..cf1ea0e36843 100644
--- a/sc/qa/unit/copy_paste_test.cxx
+++ b/sc/qa/unit/copy_paste_test.cxx
@@ -95,7 +95,7 @@ void ScCopyPasteTest::testCopyPasteXLS()
// 5. Create a new Spreadsheet
Sequence < beans::PropertyValue > args(1);
args[0].Name = "Hidden";
- args[0].Value <<= sal_True;
+ args[0].Value <<= true;
uno::Reference< lang::XComponent > xComponent = xDesktop->loadComponentFromURL(
"private:factory/scalc",