summaryrefslogtreecommitdiff
path: root/basic/source/inc/image.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-08-12 09:07:20 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-08-12 09:16:58 +0900
commit1817cf60d1d5461b57b9b6fdb0b2849bb29389a8 (patch)
treebe18508a066566569701a40d9dda51edd029b637 /basic/source/inc/image.hxx
parentc18c4f0547c5bdc388670af2f1501199c34ef540 (diff)
sal_Bool to bool
Change-Id: I61a6675df622232923a827fc20bf121dd03cd7da
Diffstat (limited to 'basic/source/inc/image.hxx')
-rw-r--r--basic/source/inc/image.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/inc/image.hxx b/basic/source/inc/image.hxx
index ac3fd41d3ebd..f62ac2569b23 100644
--- a/basic/source/inc/image.hxx
+++ b/basic/source/inc/image.hxx
@@ -36,7 +36,7 @@ class SbiImage {
sal_Unicode* pStrings; // StringPool
char* pCode; // Code-Image
char* pLegacyPCode; // Code-Image
- sal_Bool bError;
+ bool bError;
sal_uInt16 nFlags;
short nStrings;
sal_uInt32 nStringSize;
@@ -68,7 +68,7 @@ public:
// nVer is set to version
// of image
sal_Bool Save( SvStream&, sal_uInt32 = B_CURVERSION );
- sal_Bool IsError() { return bError; }
+ bool IsError() { return bError; }
const char* GetCode() const { return pCode; }
sal_uInt32 GetCodeSize() const { return nCodeSize; }