diff options
Diffstat (limited to 'plugins/Clist_modern/src/modern_clui.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_clui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Clist_modern/src/modern_clui.cpp b/plugins/Clist_modern/src/modern_clui.cpp index 7376a2a363..d8ad4dda50 100644 --- a/plugins/Clist_modern/src/modern_clui.cpp +++ b/plugins/Clist_modern/src/modern_clui.cpp @@ -2168,9 +2168,9 @@ LRESULT CLUI::OnStatusBarUpdateTimer(UINT msg, WPARAM wParam, LPARAM lParam) if (IsWindowVisible(pcli->hwndStatus))
pcli->pfnInvalidateRect(pcli->hwndStatus,NULL,0);
if (pt->bGlobal)
- cliTrayIconUpdateBase(g_szConnectingProto);
+ pcli->pfnTrayIconUpdateBase(g_szConnectingProto);
else
- cliTrayIconUpdateBase(pt->szProto);
+ pcli->pfnTrayIconUpdateBase(pt->szProto);
pcli->pfnInvalidateRect(pcli->hwndStatus,NULL,TRUE);
return DefCluiWndProc( msg, wParam, lParam);
|