diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-07 16:42:18 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-15 09:02:31 +0200 |
commit | 8a81f542a6ca566661305c53899b7e422cbaa432 (patch) | |
tree | b70ce405aab1c29856fa824493a664ba8ba27596 /xmloff/inc/XMLElementPropertyContext.hxx | |
parent | 42bfd486a457d327f640263ccc3ee02a380f3566 (diff) |
xmloff: sal_Bool->bool
Change-Id: I873c80baec8e70e3e8f642644563b92137571a30
Diffstat (limited to 'xmloff/inc/XMLElementPropertyContext.hxx')
-rw-r--r-- | xmloff/inc/XMLElementPropertyContext.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/inc/XMLElementPropertyContext.hxx b/xmloff/inc/XMLElementPropertyContext.hxx index 95b60dc6c4fb..00771eaa3a74 100644 --- a/xmloff/inc/XMLElementPropertyContext.hxx +++ b/xmloff/inc/XMLElementPropertyContext.hxx @@ -28,15 +28,15 @@ class SvXMLImport; class XMLElementPropertyContext : public SvXMLImportContext { - sal_Bool bInsert; + bool bInsert; protected: ::std::vector< XMLPropertyState > &rProperties; XMLPropertyState aProp; - sal_Bool IsInsert() const { return bInsert; } - void SetInsert( sal_Bool bIns ) { bInsert = bIns; } + bool IsInsert() const { return bInsert; } + void SetInsert( bool bIns ) { bInsert = bIns; } public: TYPEINFO_OVERRIDE(); |