diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-04-11 18:38:51 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-04-11 18:38:51 +0200 |
commit | 7635e0c1c7f821a1081f8e3868f641ae74a172d6 (patch) | |
tree | 69bc8272d9cb2eff167027cadf67824d4a29ff7b /cui | |
parent | 33cf2b6613da36863f6f64a7ac1e413ac1e641ff (diff) |
sal_Bool -> bool
Change-Id: If632eb547aa5082ad13eac8c2ad39a1742309fc7
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/optjava.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/optjava.cxx b/cui/source/options/optjava.cxx index 843fc2e5eb52..41430d586db2 100644 --- a/cui/source/options/optjava.cxx +++ b/cui/source/options/optjava.cxx @@ -690,7 +690,7 @@ bool SvxJavaOptionsPage::FillItemSet( SfxItemSet* /*rCoreSet*/ ) } } - sal_Bool bEnabled = false; + bool bEnabled = false; eErr = jfw_getEnabled( &bEnabled ); DBG_ASSERT( JFW_E_NONE == eErr, "SvxJavaOptionsPage::FillItemSet(): error in jfw_getEnabled" ); @@ -715,7 +715,7 @@ void SvxJavaOptionsPage::Reset( const SfxItemSet* /*rSet*/ ) SvtMiscOptions aMiscOpt; #if HAVE_FEATURE_JAVA - sal_Bool bEnabled = false; + bool bEnabled = false; javaFrameworkError eErr = jfw_getEnabled( &bEnabled ); if ( eErr != JFW_E_NONE ) bEnabled = false; |