diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-03-10 22:48:41 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-03-16 09:39:12 +0100 |
commit | 684baef50641a184e138c6e0a73b1a3b51c47ccb (patch) | |
tree | 2d13e4ff9935cd48d22eb8c4a985d2dc8baadba5 /starmath | |
parent | 58f0208479c05988c80c19e5af69ce3aa9426dbb (diff) |
sal_Bool to bool
Change-Id: Ib19ecab287396dc6d6cf4a77dcf7072c5c4c84f8
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/inc/document.hxx | 2 | ||||
-rw-r--r-- | starmath/source/document.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/starmath/inc/document.hxx b/starmath/inc/document.hxx index 4452922ffd6c..22cda9ccd64e 100644 --- a/starmath/inc/document.hxx +++ b/starmath/inc/document.hxx @@ -128,7 +128,7 @@ class SmDocShell : public SfxObjectShell, public SfxListener OUString* pFullTypeName, OUString* pShortTypeName, sal_Int32 nFileFormat, - sal_Bool bTemplate = sal_False ) const; + bool bTemplate = false ) const; virtual sal_Bool SetData( const OUString& rData ); virtual sal_uLong GetMiscStatus() const; diff --git a/starmath/source/document.cxx b/starmath/source/document.cxx index 5c4da925ff85..4ba13b05cebb 100644 --- a/starmath/source/document.cxx +++ b/starmath/source/document.cxx @@ -1393,7 +1393,7 @@ void SmDocShell::FillClass(SvGlobalName* pClassName, OUString* pFullTypeName, OUString* pShortTypeName, sal_Int32 nFileFormat, - sal_Bool bTemplate /* = sal_False */) const + bool bTemplate /* = false */) const { SAL_INFO( "starmath", "SmDocShell::FillClass" ); |