summaryrefslogtreecommitdiff
path: root/vcl/source/filter/FilterConfigCache.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
commite8f8f24c8415898c787bbfb629247ed62e73a2b9 (patch)
treedae18a3acbf29c192118e7c003f80df8da8e21ae /vcl/source/filter/FilterConfigCache.hxx
parent1c8402465cfd4df862409dc310f5f099d044c4d8 (diff)
vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
Diffstat (limited to 'vcl/source/filter/FilterConfigCache.hxx')
-rw-r--r--vcl/source/filter/FilterConfigCache.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/vcl/source/filter/FilterConfigCache.hxx b/vcl/source/filter/FilterConfigCache.hxx
index a9b693e73c00..ee83a39db2fb 100644
--- a/vcl/source/filter/FilterConfigCache.hxx
+++ b/vcl/source/filter/FilterConfigCache.hxx
@@ -48,10 +48,10 @@ class FilterConfigCache
// user data
OUString sFilterName;
- sal_Bool bIsInternalFilter : 1;
- sal_Bool bIsPixelFormat : 1;
+ bool bIsInternalFilter : 1;
+ bool bIsPixelFormat : 1;
- sal_Bool CreateFilterName( const OUString& rUserDataEntry );
+ bool CreateFilterName( const OUString& rUserDataEntry );
OUString GetShortName( );
static const char* InternalPixelFilterNameList[];
@@ -63,9 +63,9 @@ class FilterConfigCache
CacheVector aImport;
CacheVector aExport;
- sal_Bool bUseConfig;
+ bool bUseConfig;
- static sal_Bool bInitialized;
+ static bool bInitialized;
static sal_Int32 nIndType;
static sal_Int32 nIndUIName;
static sal_Int32 nIndDocumentService;
@@ -98,8 +98,8 @@ public:
OUString GetImportFilterType( sal_uInt16 nFormat );
OUString GetImportFilterTypeName( sal_uInt16 nFormat );
- sal_Bool IsImportInternalFilter( sal_uInt16 nFormat );
- sal_Bool IsImportPixelFormat( sal_uInt16 nFormat );
+ bool IsImportInternalFilter( sal_uInt16 nFormat );
+ bool IsImportPixelFormat( sal_uInt16 nFormat );
sal_uInt16 GetExportFormatCount() const
{ return sal::static_int_cast< sal_uInt16 >(aExport.size()); };
@@ -116,10 +116,10 @@ public:
OUString GetExportFilterTypeName( sal_uInt16 nFormat );
OUString GetExportInternalFilterName( sal_uInt16 nFormat );
- sal_Bool IsExportInternalFilter( sal_uInt16 nFormat );
- sal_Bool IsExportPixelFormat( sal_uInt16 nFormat );
+ bool IsExportInternalFilter( sal_uInt16 nFormat );
+ bool IsExportPixelFormat( sal_uInt16 nFormat );
- FilterConfigCache( sal_Bool bUseConfig );
+ FilterConfigCache( bool bUseConfig );
~FilterConfigCache();
};