diff options
author | George Hazan <george.hazan@gmail.com> | 2015-03-30 18:12:17 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-03-30 18:12:17 +0000 |
commit | 717a61c4ad2d5059b6403c492d666b2b09e1fd6c (patch) | |
tree | bf5a943c2bb959d7d017704b415ccd25a1a10ca6 /plugins/TabSRMM/src/mim.h | |
parent | 930eb7441e3741bfc06efa47c58510e6d3b0b576 (diff) |
minor code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@12554 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/mim.h')
-rw-r--r-- | plugins/TabSRMM/src/mim.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/TabSRMM/src/mim.h b/plugins/TabSRMM/src/mim.h index ee3e78145f..99a2f80cd5 100644 --- a/plugins/TabSRMM/src/mim.h +++ b/plugins/TabSRMM/src/mim.h @@ -167,10 +167,10 @@ public: // os dependent stuff (aero, visual styles etc.)
// returns status of Windows Aero
- const bool isAero() const { return m_isAero; }
+ __forceinline bool isAero() const { return m_isAero; }
- const bool isDwmActive() const { return m_DwmActive; }
- const DWORD getWinVer() const { return m_winVer; }
+ __forceinline bool isDwmActive() const { return m_DwmActive; }
+ __forceinline DWORD getWinVer() const { return m_winVer; }
// refresh Aero status.
bool getAeroState();
|