bool improvements

Change-Id: I989302c6774c4dd01dff3f682bd4b681fc9141df
This commit is contained in:
Stephan Bergmann
2014-01-22 11:27:05 +01:00
parent 4f03eb00fc
commit 5cb459c207

View File

@@ -49,7 +49,7 @@ private:
void MorkDriverTest::checkAcceptsURL(Reference< XDriver> xDriver, const char* url, bool expected) void MorkDriverTest::checkAcceptsURL(Reference< XDriver> xDriver, const char* url, bool expected)
{ {
sal_Bool res = xDriver->acceptsURL(OUString::createFromAscii(url)); bool res = xDriver->acceptsURL(OUString::createFromAscii(url));
if (res != expected) if (res != expected)
{ {
CPPUNIT_ASSERT_MESSAGE("wrong URL outcome!", true); CPPUNIT_ASSERT_MESSAGE("wrong URL outcome!", true);