summaryrefslogtreecommitdiff
path: root/sc/qa/unit/subsequent_filters-test.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-02-20 11:44:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-02-20 12:23:59 +0000
commit408c0a7693316f0e23080be52db9bef720ed2cb4 (patch)
treea5beddbd132e0818ed5a3a978bca57bb521b1ac3 /sc/qa/unit/subsequent_filters-test.cxx
parent2009cf1b1c50976abd7714a2fc11046e12da8da7 (diff)
convert StringType to scoped enum
and drop unused FormulaValue enumerator Change-Id: Ide6026b841db224947d7d559c110dfc7da3cd975 Reviewed-on: https://gerrit.libreoffice.org/34467 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/qa/unit/subsequent_filters-test.cxx')
-rw-r--r--sc/qa/unit/subsequent_filters-test.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/qa/unit/subsequent_filters-test.cxx b/sc/qa/unit/subsequent_filters-test.cxx
index af7577503aa7..ff9717d44a7d 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -547,13 +547,13 @@ void ScFiltersTest::testFunctionsODS()
testFile(aCSVFileName, rDoc, 1);
//test mathematical functions
createCSVPath("mathematical-functions.", aCSVFileName);
- testFile(aCSVFileName, rDoc, 2, PureString);
+ testFile(aCSVFileName, rDoc, 2, StringType::PureString);
//test information functions
createCSVPath("information-functions.", aCSVFileName);
testFile(aCSVFileName, rDoc, 3);
// text functions
createCSVPath("text-functions.", aCSVFileName);
- testFile(aCSVFileName, rDoc, 4, PureString);
+ testFile(aCSVFileName, rDoc, 4, StringType::PureString);
// statistical functions
createCSVPath("statistical-functions.", aCSVFileName);
testFile(aCSVFileName, rDoc, 5);
@@ -578,7 +578,7 @@ void ScFiltersTest::testFunctionsODS()
xDocSh->DoHardRecalc(true);
ScDocument& rDoc3 = xDocSh->GetDocument();
createCSVPath("date-time-functions.", aCSVFileName);
- testFile(aCSVFileName, rDoc3, 0, PureString);
+ testFile(aCSVFileName, rDoc3, 0, StringType::PureString);
xDocSh->DoClose();
@@ -631,13 +631,13 @@ void ScFiltersTest::testCachedFormulaResultsODS()
testFile(aCSVFileName, rDoc, 1);
//test cached formula results of mathematical functions
createCSVPath("mathematical-functions.", aCSVFileName);
- testFile(aCSVFileName, rDoc, 2, PureString);
+ testFile(aCSVFileName, rDoc, 2, StringType::PureString);
//test cached formula results of information functions
createCSVPath("information-functions.", aCSVFileName);
testFile(aCSVFileName, rDoc, 3);
// text functions
createCSVPath("text-functions.", aCSVFileName);
- testFile(aCSVFileName, rDoc, 4, PureString);
+ testFile(aCSVFileName, rDoc, 4, StringType::PureString);
xDocSh->DoClose();
}
@@ -1480,7 +1480,7 @@ void ScFiltersTest::testBrokenQuotesCSV()
OUString aCSVPath;
createCSVPath( aSheet2CSV, aCSVPath );
// fdo#48621
- testFile( aCSVPath, rDoc, 0, PureString);
+ testFile( aCSVPath, rDoc, 0, StringType::PureString);
xDocSh->DoClose();
}