summaryrefslogtreecommitdiff
path: root/include/comphelper/MasterPropertySet.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-16 22:51:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-17 17:55:19 +0100
commit05f742d28b3786f44781af5b069c05c16b84decd (patch)
treedacb340f99ad4e47d20557eee04e6f69f5d15721 /include/comphelper/MasterPropertySet.hxx
parentfaced6b5f72b096800a232749cce6b38a76d5bac (diff)
comphelper: sal_Bool -> bool
Change-Id: I6fc331ae0706f4bb193543011c8d4ae0a385fcc0
Diffstat (limited to 'include/comphelper/MasterPropertySet.hxx')
-rw-r--r--include/comphelper/MasterPropertySet.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/comphelper/MasterPropertySet.hxx b/include/comphelper/MasterPropertySet.hxx
index c11e2ccdd6ba..7ba220c7ebff 100644
--- a/include/comphelper/MasterPropertySet.hxx
+++ b/include/comphelper/MasterPropertySet.hxx
@@ -35,10 +35,10 @@ namespace comphelper
{
ChainablePropertySet * mpSlave;
::com::sun::star::uno::Reference < com::sun::star::beans::XPropertySet > mxSlave;
- sal_Bool mbInit;
+ bool mbInit;
SlaveData ( ChainablePropertySet *pSlave);
- inline sal_Bool IsInit () { return mbInit;}
- inline void SetInit ( sal_Bool bInit) { mbInit = bInit; }
+ inline bool IsInit () { return mbInit;}
+ inline void SetInit ( bool bInit) { mbInit = bInit; }
};
}
typedef std::map < sal_uInt8, comphelper::SlaveData* > SlaveMap;