diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-08-15 09:44:54 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-08-15 09:45:49 +0900 |
commit | dfe544c87b55cb6b7db4efe8a992868ad6e11339 (patch) | |
tree | ec7c3820f27740c90fba5fe0f4a1d03edfc2c75b /basic/source/inc/image.hxx | |
parent | 065b591504096661ac9f421902e108fbb8624b23 (diff) |
sal_Bool to bool
Change-Id: I784fb31bad1ff02987c24abbac04b38207a1f5cf
Diffstat (limited to 'basic/source/inc/image.hxx')
-rw-r--r-- | basic/source/inc/image.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/basic/source/inc/image.hxx b/basic/source/inc/image.hxx index f62ac2569b23..96474ad78ca1 100644 --- a/basic/source/inc/image.hxx +++ b/basic/source/inc/image.hxx @@ -58,16 +58,16 @@ public: String aName; // macro name ::rtl::OUString aOUSource; // source code String aComment; - sal_Bool bInit; - sal_Bool bFirstInit; + bool bInit; + bool bFirstInit; SbiImage(); ~SbiImage(); void Clear(); - sal_Bool Load( SvStream&, sal_uInt32& nVer ); + bool Load( SvStream&, sal_uInt32& nVer ); // nVer is set to version // of image - sal_Bool Save( SvStream&, sal_uInt32 = B_CURVERSION ); + bool Save( SvStream&, sal_uInt32 = B_CURVERSION ); bool IsError() { return bError; } const char* GetCode() const { return pCode; } @@ -84,7 +84,7 @@ public: sal_uInt16 CalcLegacyOffset( sal_Int32 nOffset ); sal_uInt32 CalcNewOffset( sal_Int16 nOffset ); void ReleaseLegacyBuffer(); - sal_Bool ExceedsLegacyLimits(); + bool ExceedsLegacyLimits(); }; |