Kaydet (Commit) 7fd168ad authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:salbool

Change-Id: I030321e8cb905be78b68f9e404926e22723632ef
üst 48c2815d
...@@ -891,8 +891,8 @@ void SwUiWriterTest::testExportToPicture() ...@@ -891,8 +891,8 @@ void SwUiWriterTest::testExportToPicture()
utl::TempFile aTempFile; utl::TempFile aTempFile;
uno::Reference<frame::XStorable> xStorable(mxComponent, uno::UNO_QUERY); uno::Reference<frame::XStorable> xStorable(mxComponent, uno::UNO_QUERY);
xStorable->storeToURL(aTempFile.GetURL(), aDescriptor); xStorable->storeToURL(aTempFile.GetURL(), aDescriptor);
sal_Bool extchk = aTempFile.IsValid(); bool extchk = aTempFile.IsValid();
CPPUNIT_ASSERT_EQUAL(sal_Bool(true), extchk); CPPUNIT_ASSERT_EQUAL(true, extchk);
osl::File tmpFile(aTempFile.GetURL()); osl::File tmpFile(aTempFile.GetURL());
tmpFile.open(sal_uInt32(osl_File_OpenFlag_Read)); tmpFile.open(sal_uInt32(osl_File_OpenFlag_Read));
sal_uInt64 val; sal_uInt64 val;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment