summaryrefslogtreecommitdiff
path: root/include/vcl/wall.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/wall.hxx')
-rw-r--r--include/vcl/wall.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/vcl/wall.hxx b/include/vcl/wall.hxx
index 4f4113f8a444..cc4a8366ba27 100644
--- a/include/vcl/wall.hxx
+++ b/include/vcl/wall.hxx
@@ -72,7 +72,7 @@ class VCL_DLLPUBLIC Wallpaper
private:
ImplWallpaper* mpImplWallpaper;
- SAL_DLLPRIVATE void ImplMakeUnique( sal_Bool bReleaseCache = sal_True );
+ SAL_DLLPRIVATE void ImplMakeUnique( bool bReleaseCache = true );
SAL_DLLPRIVATE Gradient ImplGetApplicationGradient() const;
public:
@@ -95,24 +95,24 @@ public:
void SetBitmap( const BitmapEx& rBitmap );
BitmapEx GetBitmap() const;
- sal_Bool IsBitmap() const;
+ bool IsBitmap() const;
void SetGradient( const Gradient& rGradient );
Gradient GetGradient() const;
- sal_Bool IsGradient() const;
+ bool IsGradient() const;
void SetRect( const Rectangle& rRect );
Rectangle GetRect() const;
- sal_Bool IsRect() const;
+ bool IsRect() const;
- sal_Bool IsFixed() const;
- sal_Bool IsScrollable() const;
+ bool IsFixed() const;
+ bool IsScrollable() const;
Wallpaper& operator=( const Wallpaper& rWallpaper );
- sal_Bool operator==( const Wallpaper& rWallpaper ) const;
- sal_Bool operator!=( const Wallpaper& rWallpaper ) const
+ bool operator==( const Wallpaper& rWallpaper ) const;
+ bool operator!=( const Wallpaper& rWallpaper ) const
{ return !(Wallpaper::operator==( rWallpaper )); }
- sal_Bool IsSameInstance( const Wallpaper& rWallpaper ) const
+ bool IsSameInstance( const Wallpaper& rWallpaper ) const
{ return (mpImplWallpaper == rWallpaper.mpImplWallpaper); }
friend VCL_DLLPUBLIC SvStream& ReadWallpaper( SvStream& rIStm, Wallpaper& rWallpaper );