summaryrefslogtreecommitdiff
path: root/basic/source/inc/image.hxx
diff options
context:
space:
mode:
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; }