summaryrefslogtreecommitdiff
path: root/idl/inc/module.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/module.hxx
parent9c117de4c1d291823d1588a99011ababab2112c8 (diff)
idl: sal_Bool->bool
Change-Id: I8b15c97b1fcc6acaf567e8b1d2d37cbc99687a9d
Diffstat (limited to 'idl/inc/module.hxx')
-rw-r--r--idl/inc/module.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/idl/inc/module.hxx b/idl/inc/module.hxx
index ce3ab0288a6a..848fe590470c 100644
--- a/idl/inc/module.hxx
+++ b/idl/inc/module.hxx
@@ -44,7 +44,7 @@ class SvMetaModule : public SvMetaExtern
SvString aTypeLibFile;
SvString aModulePrefix;
- sal_Bool bImported : 1,
+ bool bImported : 1,
bIsModified : 1;
SvGlobalName aBeginName;
SvGlobalName aEndName;
@@ -61,7 +61,7 @@ public:
const OUString & GetIdlFileName() const { return aIdlFileName; }
const OString& GetModulePrefix() const { return aModulePrefix.getString(); }
- virtual sal_Bool SetName( const OString& rName, SvIdlDataBase * = NULL ) SAL_OVERRIDE;
+ virtual bool SetName( const OString& rName, SvIdlDataBase * = NULL ) SAL_OVERRIDE;
const OString& GetHelpFileName() const { return aHelpFileName.getString(); }
const OString& GetTypeLibFileName() const { return aTypeLibFile.getString(); }
@@ -71,13 +71,13 @@ public:
const SvMetaClassMemberList & GetClassList() const { return aClassList; }
SvMetaModule( const OUString & rIdlFileName,
- sal_Bool bImported );
+ bool bImported );
- sal_Bool FillNextName( SvGlobalName * );
- sal_Bool IsImported() const { return bImported; }
- sal_Bool IsModified() const { return bIsModified; }
+ bool FillNextName( SvGlobalName * );
+ bool IsImported() const { return bImported; }
+ bool IsModified() const { return bIsModified; }
- 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 WriteAttributes( SvIdlDataBase & rBase,