summaryrefslogtreecommitdiff
path: root/svx/source/unogallery
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-14 16:15:22 +0200
committerNoel Grandin <noel@peralex.com>2014-04-15 09:02:33 +0200
commitbe88947bac607013c6b7a3c923a2eccd09e50942 (patch)
tree09cdc0803437ac8c76e12c60c6644c49cb1d5dd4 /svx/source/unogallery
parentcfddda092b0c105b5be7942a94cbbd88d55677f1 (diff)
svx: sal_Bool->bool
Change-Id: I464eba5fd5521c31868c6fc8a2137f17428d421e
Diffstat (limited to 'svx/source/unogallery')
-rw-r--r--svx/source/unogallery/unogalthemeprovider.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/unogallery/unogalthemeprovider.cxx b/svx/source/unogallery/unogalthemeprovider.cxx
index c82520590e21..1cf1af4967cd 100644
--- a/svx/source/unogallery/unogalthemeprovider.cxx
+++ b/svx/source/unogallery/unogalthemeprovider.cxx
@@ -35,7 +35,7 @@ using namespace ::com::sun::star;
namespace {
GalleryThemeProvider::GalleryThemeProvider() :
- mbHiddenThemes( sal_False )
+ mbHiddenThemes( false )
{
mpGallery = ::Gallery::GetGalleryInstance();
}
@@ -174,7 +174,7 @@ sal_Bool SAL_CALL GalleryThemeProvider::hasByName( const OUString& rName )
{
const SolarMutexGuard aGuard;
- sal_Bool bRet = sal_False;
+ bool bRet = false;
if( mpGallery && mpGallery->HasTheme( rName ) )
bRet = ( mbHiddenThemes || !mpGallery->GetThemeInfo( rName )->IsHidden() );