diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-11-02 02:24:31 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-11-10 07:58:43 +0100 |
commit | c8431b7fe226f6681adba7dc03f88235264081bb (patch) | |
tree | eb8c50fd54e89213cb990d4e227b92ea905cc433 /vcl/inc/win | |
parent | 2e4b89bb283d6d744b5f04cdcc2749f56271741d (diff) |
remove unused code and const-ify some methods
Change-Id: I4c8da0cdf39f31ec757e87687dcec79a4ac83681
Diffstat (limited to 'vcl/inc/win')
-rw-r--r-- | vcl/inc/win/salgdi.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/vcl/inc/win/salgdi.h b/vcl/inc/win/salgdi.h index 798a99b60233..57b138199ce8 100644 --- a/vcl/inc/win/salgdi.h +++ b/vcl/inc/win/salgdi.h @@ -194,14 +194,13 @@ public: HFONT ImplDoSetFont( FontSelectPattern* i_pFont, float& o_rFontScale, HFONT& o_rOldFont ); public: - explicit WinSalGraphics(); explicit WinSalGraphics(WinSalGraphics::Type eType, bool bScreen); virtual ~WinSalGraphics(); - bool isPrinter(); - bool isVirtualDevice(); - bool isWindow(); - bool isScreen(); + bool isPrinter() const; + bool isVirtualDevice() const; + bool isWindow() const; + bool isScreen() const; protected: virtual bool setClipRegion( const vcl::Region& ); |