diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:02:54 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:30 +0100 |
commit | d5d2e280bda78fe03a96daae9677e0cf54201057 (patch) | |
tree | 6b498e8edeec92775eba6975f12dac010386dff1 /chart2/qa | |
parent | c68a8f45581394a349f76aaece3b1f0ad65acd8f (diff) |
bool improvements
Change-Id: I4fb554a0b703b29cb2dc70fc11111a4f2fa9af8e
Diffstat (limited to 'chart2/qa')
-rw-r--r-- | chart2/qa/extras/chart2export.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/qa/extras/chart2export.cxx b/chart2/qa/extras/chart2export.cxx index d29e353f2bab..b62c254b3b18 100644 --- a/chart2/qa/extras/chart2export.cxx +++ b/chart2/qa/extras/chart2export.cxx @@ -478,7 +478,7 @@ void Chart2ExportTest::testEmbeddingsGrabBag() uno::Sequence<beans::PropertyValue> aGrabBag(0); xTextDocumentPropertySet->getPropertyValue(OUString("InteropGrabBag")) >>= aGrabBag; CPPUNIT_ASSERT(aGrabBag.hasElements()); // Grab Bag not empty - bool bEmbeddings = sal_False; + bool bEmbeddings = false; const char* testEmbeddedFileNames[3] = {"word/embeddings/Microsoft_Excel_Worksheet3.xlsx", "word/embeddings/Microsoft_Excel_Worksheet2.xlsx", "word/embeddings/Microsoft_Excel_Worksheet1.xlsx"}; @@ -486,7 +486,7 @@ void Chart2ExportTest::testEmbeddingsGrabBag() { if (aGrabBag[i].Name == "OOXEmbeddings") { - bEmbeddings = sal_True; + bEmbeddings = true; uno::Sequence<beans::PropertyValue> aEmbeddingsList(0); uno::Reference<io::XInputStream> aEmbeddingXlsxStream; OUString aEmbeddedfileName; |