diff options
author | George Hazan <ghazan@miranda.im> | 2019-09-12 21:33:28 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-09-12 21:33:28 +0300 |
commit | 7b64f8c1aac010e8d2bf865bb649df56388a51b3 (patch) | |
tree | c1900dc291802d15ef21adba550104dcfec51d08 /plugins/TabSRMM/src/taskbar.h | |
parent | a40f1f72a0bf581b77ac3d2d348827d77195e24c (diff) |
tabSRMM: single window
Diffstat (limited to 'plugins/TabSRMM/src/taskbar.h')
-rw-r--r-- | plugins/TabSRMM/src/taskbar.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/TabSRMM/src/taskbar.h b/plugins/TabSRMM/src/taskbar.h index 9da6ab0d0d..622ec3cff9 100644 --- a/plugins/TabSRMM/src/taskbar.h +++ b/plugins/TabSRMM/src/taskbar.h @@ -49,7 +49,7 @@ public: virtual void update() = 0;
protected:
- const CTabBaseDlg *m_dat;
+ const CMsgDialog *m_dat;
const CProxyWindow *m_pWnd;
HBITMAP m_hbmThumb, m_hbmOld;
@@ -98,7 +98,7 @@ private: class CProxyWindow
{
public:
- CProxyWindow(CTabBaseDlg *dat);
+ CProxyWindow(CMsgDialog *dat);
~CProxyWindow();
void updateIcon(const HICON hIcon) const;
@@ -109,7 +109,7 @@ public: void Invalidate() const;
void verifyDwmState();
- __inline const CTabBaseDlg* getDat() const { return m_dat; }
+ __inline const CMsgDialog* getDat() const { return m_dat; }
__inline const LONG getWidth() const { return m_width; }
__inline const LONG getHeight() const { return m_height; }
__inline const HWND getHwnd() const { return m_hwndProxy; }
@@ -119,7 +119,7 @@ public: static LRESULT CALLBACK stubWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
private:
- CTabBaseDlg *m_dat;
+ CMsgDialog *m_dat;
HWND m_hwndProxy = nullptr;
LONG m_width, m_height;
|