diff options
author | George Hazan <ghazan@miranda.im> | 2019-04-08 19:11:24 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-04-08 19:11:24 +0300 |
commit | 106ee67ae25419a2258c91b2d6e7a00312a51de0 (patch) | |
tree | 62e9b1cf626e00db59bec3a809ec2e4543d28e70 /plugins/TabSRMM/src/taskbar.h | |
parent | c78da653c2806e0ac72e0c7baa499342a4c637e5 (diff) |
Jabber: merge of fixes from trunk
Diffstat (limited to 'plugins/TabSRMM/src/taskbar.h')
-rw-r--r-- | plugins/TabSRMM/src/taskbar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/TabSRMM/src/taskbar.h b/plugins/TabSRMM/src/taskbar.h index 3cad4ddecc..9da6ab0d0d 100644 --- a/plugins/TabSRMM/src/taskbar.h +++ b/plugins/TabSRMM/src/taskbar.h @@ -121,15 +121,15 @@ public: private:
CTabBaseDlg *m_dat;
- HWND m_hwndProxy;
+ HWND m_hwndProxy = nullptr;
LONG m_width, m_height;
- HICON m_hBigIcon, m_hOverlayIcon;
+ HICON m_hBigIcon = nullptr, m_hOverlayIcon = nullptr;
LRESULT CALLBACK wndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
void sendThumb(LONG width, LONG height);
void sendPreview();
- CThumbBase *m_thumb;
+ CThumbBase *m_thumb = nullptr;
};
class CTaskbarInteract
|