diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/CSList/src/cslist.cpp | 4 | ||||
-rw-r--r-- | plugins/SecureIM/src/main.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CSList/src/cslist.cpp b/plugins/CSList/src/cslist.cpp index 2c5adcd426..442d2ae86d 100644 --- a/plugins/CSList/src/cslist.cpp +++ b/plugins/CSList/src/cslist.cpp @@ -226,10 +226,10 @@ INT_PTR showList(WPARAM, LPARAM, LPARAM param) void addProtoStatusMenuItem(char *protoName) { PROTOACCOUNT *pdescr = Proto_GetAccount(protoName); - if (pdescr == NULL) + if (pdescr == NULL || pdescr->ppro == NULL) return; - HGENMENU hRoot = Menu_GetProtocolRoot(pdescr->szModuleName); + HGENMENU hRoot = Menu_GetProtocolRoot(pdescr->ppro); if (hRoot == NULL) return; diff --git a/plugins/SecureIM/src/main.cpp b/plugins/SecureIM/src/main.cpp index 97ce846321..b95da08213 100644 --- a/plugins/SecureIM/src/main.cpp +++ b/plugins/SecureIM/src/main.cpp @@ -51,7 +51,7 @@ static HGENMENU MyAddMenuItem(LPCWSTR name, int pos, HICON hicon, LPCSTR service static HGENMENU MyAddSubItem(HGENMENU hRoot, LPCSTR name, int pos, int poppos, LPCSTR service, WPARAM wParam = 0)
{
CMenuItem mi;
- mi.flags = CMIF_HIDDEN;
+ mi.flags = CMIF_HIDDEN;
mi.position = pos;
mi.name.a = (char*)name;
mi.root = hRoot;
|