summaryrefslogtreecommitdiff
path: root/idl/inc/object.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-08 11:42:16 +0200
committerNoel Grandin <noel@peralex.com>2014-05-08 11:44:54 +0200
commitf0268c9c1be546aa0b5fc9c359f514e5d8af5bbb (patch)
tree57ca82b332aa5c9ec13909ea2439c280dc9fe379 /idl/inc/object.hxx
parent9c117de4c1d291823d1588a99011ababab2112c8 (diff)
idl: sal_Bool->bool
Change-Id: I8b15c97b1fcc6acaf567e8b1d2d37cbc99687a9d
Diffstat (limited to 'idl/inc/object.hxx')
-rw-r--r--idl/inc/object.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/idl/inc/object.hxx b/idl/inc/object.hxx
index 01b51e204cdf..1e1037c29281 100644
--- a/idl/inc/object.hxx
+++ b/idl/inc/object.hxx
@@ -54,9 +54,9 @@ public:
const OString& GetPrefix() const
{ return aPrefix; }
- void SetAutomation( sal_Bool rAutomation )
+ void SetAutomation( bool rAutomation )
{ aAutomation = rAutomation; }
- sal_Bool GetAutomation() const
+ bool GetAutomation() const
{ return aAutomation; }
void SetClass( SvMetaClass * pClass )
@@ -79,7 +79,7 @@ class SvMetaClass : public SvMetaType
SvBOOL aAutomation;
SvMetaClassRef xAutomationInterface;
- sal_Bool TestAttribute( SvIdlDataBase & rBase, SvTokenStream & rInStm,
+ bool TestAttribute( SvIdlDataBase & rBase, SvTokenStream & rInStm,
SvMetaAttribute & rAttr ) const;
void WriteSlotStubs( const OString& rShellName,
SvSlotElementList & rSlotList,
@@ -107,14 +107,14 @@ protected:
virtual void WriteContextSvIdl( SvIdlDataBase & rBase,
SvStream & rOutStm, sal_uInt16 nTab ) SAL_OVERRIDE;
void WriteOdlMembers( ByteStringList & rSuperList,
- sal_Bool bVariable, sal_Bool bWriteTab,
+ bool bVariable, bool bWriteTab,
SvIdlDataBase & rBase,
SvStream & rOutStm, sal_uInt16 nTab );
public:
SV_DECL_META_FACTORY1( SvMetaClass, SvMetaType, 6 )
SvMetaClass();
- sal_Bool GetAutomation() const
+ bool GetAutomation() const
{ return aAutomation; }
SvMetaClass * GetSuperClass() const
{ return aSuperClass; }
@@ -125,7 +125,7 @@ public:
GetClassList() const
{ return aClassList; }
- virtual sal_Bool ReadSvIdl( SvIdlDataBase &, SvTokenStream & rInStm ) SAL_OVERRIDE;
+ virtual bool ReadSvIdl( SvIdlDataBase &, SvTokenStream & rInStm ) SAL_OVERRIDE;
virtual void WriteSvIdl( SvIdlDataBase & rBase, SvStream & rOutStm, sal_uInt16 nTab ) SAL_OVERRIDE;
virtual void Write( SvIdlDataBase & rBase, SvStream & rOutStm,
sal_uInt16 nTab,