summaryrefslogtreecommitdiff
path: root/include/vcl/FilterConfigItem.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 /include/vcl/FilterConfigItem.hxx
parent1c8402465cfd4df862409dc310f5f099d044c4d8 (diff)
vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
Diffstat (limited to 'include/vcl/FilterConfigItem.hxx')
-rw-r--r--include/vcl/FilterConfigItem.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/vcl/FilterConfigItem.hxx b/include/vcl/FilterConfigItem.hxx
index 091b6b2f7be6..13d2beff9cb9 100644
--- a/include/vcl/FilterConfigItem.hxx
+++ b/include/vcl/FilterConfigItem.hxx
@@ -38,12 +38,12 @@ class VCL_DLLPUBLIC FilterConfigItem
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > xPropSet;
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aFilterData;
- sal_Bool bModified;
+ bool bModified;
- sal_Bool ImplGetPropertyValue( ::com::sun::star::uno::Any& rAny,
+ bool ImplGetPropertyValue( ::com::sun::star::uno::Any& rAny,
const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& rXPropSet,
const OUString& rPropName,
- sal_Bool bTestPropertyAvailability );
+ bool bTestPropertyAvailability );
void ImpInitTree( const OUString& rTree );
@@ -51,7 +51,7 @@ class VCL_DLLPUBLIC FilterConfigItem
static ::com::sun::star::beans::PropertyValue* GetPropertyValue(
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rPropSeq,
const OUString& rName );
- static sal_Bool WritePropertyValue(
+ static bool WritePropertyValue(
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rPropSeq,
const ::com::sun::star::beans::PropertyValue& rPropValue );
@@ -66,14 +66,14 @@ public :
// 1. FilterData PropertySequence
// 2. configuration
// 3. given default
- sal_Bool ReadBool( const OUString& rKey, sal_Bool bDefault );
+ bool ReadBool( const OUString& rKey, bool bDefault );
sal_Int32 ReadInt32( const OUString& rKey, sal_Int32 nDefault );
OUString
ReadString( const OUString& rKey, const OUString& rDefault );
// try to store to configuration
// and always stores into the FilterData sequence
- void WriteBool( const OUString& rKey, sal_Bool bValue );
+ void WriteBool( const OUString& rKey, bool bValue );
void WriteInt32( const OUString& rKey, sal_Int32 nValue );
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > GetFilterData() const;