summaryrefslogtreecommitdiff
path: root/include/basic/sbxobj.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-26 11:18:51 +0200
committerNoel Grandin <noel@peralex.com>2014-03-27 13:45:08 +0200
commitf288d7dcbd65e86e2c4f6519fac91eece8f01034 (patch)
treece706f8d0aca0501f7ca5976b4c3ff33486ece42 /include/basic/sbxobj.hxx
parentd7c5d9e3853af0261204fde6c14b349d9c3d9863 (diff)
basic: sal_Bool->bool
Change-Id: Id4952b6f97f9e8f917fea5651dee91499d109e48
Diffstat (limited to 'include/basic/sbxobj.hxx')
-rw-r--r--include/basic/sbxobj.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/basic/sbxobj.hxx b/include/basic/sbxobj.hxx
index 57c92bfd2eb8..dbc9b7adeb22 100644
--- a/include/basic/sbxobj.hxx
+++ b/include/basic/sbxobj.hxx
@@ -37,8 +37,8 @@ protected:
SbxProperty* pDfltProp; // Default-Property
OUString aClassName; // Classname
OUString aDfltPropName;
- virtual sal_Bool LoadData( SvStream&, sal_uInt16 ) SAL_OVERRIDE;
- virtual sal_Bool StoreData( SvStream& ) const SAL_OVERRIDE;
+ virtual bool LoadData( SvStream&, sal_uInt16 ) SAL_OVERRIDE;
+ virtual bool StoreData( SvStream& ) const SAL_OVERRIDE;
virtual ~SbxObject();
virtual void SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCType,
const SfxHint& rHint, const TypeId& rHintType ) SAL_OVERRIDE;
@@ -52,7 +52,7 @@ public:
virtual SbxClassType GetClass() const SAL_OVERRIDE;
virtual void Clear() SAL_OVERRIDE;
- virtual sal_Bool IsClass( const OUString& ) const;
+ virtual sal_Bool IsClass( const OUString& ) const;
const OUString& GetClassName() const { return aClassName; }
void SetClassName( const OUString &rNew ) { aClassName = rNew; }
// Default-Property
@@ -67,7 +67,7 @@ public:
// Execution of DDE-Commands
SbxVariable* Execute( const OUString& );
// Manage elements
- virtual sal_Bool GetAll( SbxClassType ) { return sal_True; }
+ virtual bool GetAll( SbxClassType ) { return true; }
SbxVariable* Make( const OUString&, SbxClassType, SbxDataType );
virtual SbxObject* MakeObject( const OUString&, const OUString& );
virtual void Insert( SbxVariable* );
@@ -85,7 +85,7 @@ public:
SbxArray* GetProperties() { return pProps; }
SbxArray* GetObjects() { return pObjs; }
// Debugging
- void Dump( SvStream&, sal_Bool bDumpAll=sal_False );
+ void Dump( SvStream&, bool bDumpAll=false );
};
SV_DECL_REF(SbxObject)