diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-14 16:15:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-15 09:02:33 +0200 |
commit | be88947bac607013c6b7a3c923a2eccd09e50942 (patch) | |
tree | 09cdc0803437ac8c76e12c60c6644c49cb1d5dd4 /svx/inc/galobj.hxx | |
parent | cfddda092b0c105b5be7942a94cbbd88d55677f1 (diff) |
svx: sal_Bool->bool
Change-Id: I464eba5fd5521c31868c6fc8a2137f17428d421e
Diffstat (limited to 'svx/inc/galobj.hxx')
-rw-r--r-- | svx/inc/galobj.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/inc/galobj.hxx b/svx/inc/galobj.hxx index 79110b3ddd7e..6b960e0986c7 100644 --- a/svx/inc/galobj.hxx +++ b/svx/inc/galobj.hxx @@ -62,13 +62,13 @@ protected: INetURLObject aURL; OUString aUserName; OUString aTitle; - sal_Bool bIsValid; - sal_Bool bIsThumbBmp; + bool bIsValid; + bool bIsThumbBmp; virtual void WriteData( SvStream& rOut, const OUString& rDestDir ) const; virtual void ReadData( SvStream& rIn, sal_uInt16& rReadVersion ); - sal_Bool CreateThumb( const Graphic& rGraphic ); + bool CreateThumb( const Graphic& rGraphic ); public: SgaObject(); @@ -80,8 +80,8 @@ public: virtual BitmapEx GetThumbBmp() const { return aThumbBmp; } const GDIMetaFile& GetThumbMtf() const { return aThumbMtf; } const INetURLObject& GetURL() const { return aURL; } - sal_Bool IsValid() const { return bIsValid; } - sal_Bool IsThumbBitmap() const { return bIsThumbBmp; } + bool IsValid() const { return bIsValid; } + bool IsThumbBitmap() const { return bIsThumbBmp; } const OUString GetTitle() const; void SetTitle( const OUString& rTitle ); @@ -122,7 +122,7 @@ class SgaObjectSvDraw : public SgaObject private: - sal_Bool CreateThumb( const FmFormModel& rModel ); + bool CreateThumb( const FmFormModel& rModel ); virtual void WriteData( SvStream& rOut, const OUString& rDestDir ) const SAL_OVERRIDE; virtual void ReadData( SvStream& rIn, sal_uInt16& rReadVersion ) SAL_OVERRIDE; |