diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-21 12:53:51 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-21 12:53:51 +0100 |
commit | e8f8f24c8415898c787bbfb629247ed62e73a2b9 (patch) | |
tree | dae18a3acbf29c192118e7c003f80df8da8e21ae /vcl/inc/unx/salvd.h | |
parent | 1c8402465cfd4df862409dc310f5f099d044c4d8 (diff) |
vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
Diffstat (limited to 'vcl/inc/unx/salvd.h')
-rw-r--r-- | vcl/inc/unx/salvd.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/inc/unx/salvd.h b/vcl/inc/unx/salvd.h index fe6afd432b32..b1210b3a5243 100644 --- a/vcl/inc/unx/salvd.h +++ b/vcl/inc/unx/salvd.h @@ -41,14 +41,14 @@ class X11SalVirtualDevice : public SalVirtualDevice int nDX_; int nDY_; sal_uInt16 nDepth_; - sal_Bool bGraphics_; // is Graphics used - sal_Bool bExternPixmap_; + bool bGraphics_; // is Graphics used + bool bExternPixmap_; public: X11SalVirtualDevice(); virtual ~X11SalVirtualDevice(); - sal_Bool Init( SalDisplay *pDisplay, + bool Init( SalDisplay *pDisplay, long nDX, long nDY, sal_uInt16 nBitCount, SalX11Screen nXScreen, @@ -66,7 +66,7 @@ public: { return pDisplay_; } - sal_Bool IsDisplay() const + bool IsDisplay() const { return pDisplay_->IsDisplay(); } @@ -80,7 +80,7 @@ public: virtual void ReleaseGraphics( SalGraphics* pGraphics ); // Set new size, without saving the old contents - virtual sal_Bool SetSize( long nNewDX, long nNewDY ); + virtual bool SetSize( long nNewDX, long nNewDY ); virtual void GetSize( long& rWidth, long& rHeight ); }; |