summaryrefslogtreecommitdiff
path: root/plugins/TabSRMM/include/taskbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/TabSRMM/include/taskbar.h')
-rw-r--r--plugins/TabSRMM/include/taskbar.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/TabSRMM/include/taskbar.h b/plugins/TabSRMM/include/taskbar.h
index 1b1725d48f..5f48fdd756 100644
--- a/plugins/TabSRMM/include/taskbar.h
+++ b/plugins/TabSRMM/include/taskbar.h
@@ -142,10 +142,10 @@ public:
m_IconSize = 0;
m_isEnabled = IsWinVer7Plus() ? true : false;
- if(m_isEnabled) {
+ if (m_isEnabled) {
::CoCreateInstance(CLSID_TaskbarList, NULL, CLSCTX_ALL, IID_ITaskbarList3, (void**)&m_pTaskbarInterface);
updateMetrics();
- if(0 == m_pTaskbarInterface)
+ if (0 == m_pTaskbarInterface)
m_isEnabled = false;
}
@@ -164,7 +164,7 @@ public:
~CTaskbarInteract()
{
- if(m_isEnabled && m_pTaskbarInterface) {
+ if (m_isEnabled && m_pTaskbarInterface) {
m_pTaskbarInterface->Release();
m_pTaskbarInterface = 0;
m_isEnabled = false;