bool improvements

Change-Id: Ic4572480d48e341c8fa611a3283efc351f530eb5
This commit is contained in:
Stephan Bergmann 2014-01-21 11:46:57 +01:00
parent d2c2ab1cb6
commit e7f7b1d09c
2 changed files with 3 additions and 3 deletions

View File

@ -1032,7 +1032,7 @@ rtl::Reference<VendorBase> getJREInfoByPath(
}
}
}
if (ret.is() == false)
if (!ret.is())
vecBadPaths.push_back(sFilePath);
else
{

View File

@ -302,7 +302,7 @@ javaFrameworkError SAL_CALL jfw_startVM(
if (mode == jfw::JFW_MODE_APPLICATION)
{
const jfw::MergedSettings settings;
if (sal_False == settings.getEnabled())
if (!settings.getEnabled())
return JFW_E_JAVA_DISABLED;
aInfo.attach(settings.createJavaInfo());
//check if a Java has ever been selected
@ -949,7 +949,7 @@ javaFrameworkError SAL_CALL jfw_setEnabled(sal_Bool bEnabled)
//check if Enabled is false;
const jfw::MergedSettings settings;
if (settings.getEnabled() == sal_False)
if (!settings.getEnabled())
g_bEnabledSwitchedOn = true;
}
jfw::NodeJava node(jfw::NodeJava::USER);