summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-06-27 17:02:03 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-06-27 17:02:03 +0000
commitc28c16e9cb3aff055f55fb3386ca88e7382f5ee1 (patch)
treeae4d1002638ffef170105bd6dd38e7e862a2a164 /plugins
parente916d442e690519162bc41f4c404abbd12eb0519 (diff)
missing protocol owner
git-svn-id: http://svn.miranda-ng.org/main/trunk@14417 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Weather/src/weather_svcs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Weather/src/weather_svcs.cpp b/plugins/Weather/src/weather_svcs.cpp
index 11d4bfc88c..4095dd9522 100644
--- a/plugins/Weather/src/weather_svcs.cpp
+++ b/plugins/Weather/src/weather_svcs.cpp
@@ -357,13 +357,13 @@ void AddMenuItems(void)
UpdatePopupMenu(opt.UsePopup);
}
- if ( ServiceExists(MS_CLIST_FRAMES_ADDFRAME)) {
+ if (ServiceExists(MS_CLIST_FRAMES_ADDFRAME)) {
mi.pszService = "Weather/mwin_menu";
CreateServiceFunction(mi.pszService, Mwin_MenuClicked);
mi.position = -0x7FFFFFF0;
mi.icolibItem = NULL;
mi.hParentMenu = NULL;
mi.name.a = LPGEN("Display in a frame");
- hMwinMenu = Menu_AddContactMenuItem(&mi);
+ hMwinMenu = Menu_AddContactMenuItem(&mi, WEATHERPROTONAME);
}
}