summaryrefslogtreecommitdiff
path: root/plugins/TabSRMM/src/mim.cpp
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2016-12-19 06:05:54 +0300
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2016-12-19 06:05:54 +0300
commit63f6579e56af870fa9ad7289a1a71cd5a27f5d76 (patch)
tree0483281e31286d4894c744c97f060cb5b35ed481 /plugins/TabSRMM/src/mim.cpp
parent758762fbc91f2002a9e41957ca34a5d772d575f4 (diff)
parent8b3c1e649624c2f270ade8d6f0fafd8b9cf3e493 (diff)
Merge branch 'master' of github.com:miranda-ng/miranda-ng
Diffstat (limited to 'plugins/TabSRMM/src/mim.cpp')
-rw-r--r--plugins/TabSRMM/src/mim.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/TabSRMM/src/mim.cpp b/plugins/TabSRMM/src/mim.cpp
index b222fdc845..9fbb141250 100644
--- a/plugins/TabSRMM/src/mim.cpp
+++ b/plugins/TabSRMM/src/mim.cpp
@@ -56,27 +56,27 @@ bool CMimAPI::m_haveBufferedPaint = false;
void CMimAPI::BroadcastMessage(UINT msg, WPARAM wParam, LPARAM lParam)
{
- WindowList_Broadcast(m_hMessageWindowList, msg, wParam, lParam);
+ WindowList_Broadcast(pci->hWindowList, msg, wParam, lParam);
}
void CMimAPI::BroadcastMessageAsync(UINT msg, WPARAM wParam, LPARAM lParam)
{
- WindowList_BroadcastAsync(m_hMessageWindowList, msg, wParam, lParam);
+ WindowList_BroadcastAsync(pci->hWindowList, msg, wParam, lParam);
}
HWND CMimAPI::FindWindow(MCONTACT h) const
{
- return WindowList_Find(m_hMessageWindowList, h);
+ return WindowList_Find(pci->hWindowList, h);
}
INT_PTR CMimAPI::AddWindow(HWND hWnd, MCONTACT h)
{
- return WindowList_Add(m_hMessageWindowList, hWnd, h);
+ return WindowList_Add(pci->hWindowList, hWnd, h);
}
INT_PTR CMimAPI::RemoveWindow(HWND hWnd)
{
- return WindowList_Remove(m_hMessageWindowList, hWnd);
+ return WindowList_Remove(pci->hWindowList, hWnd);
}
/////////////////////////////////////////////////////////////////////////////////////////