summaryrefslogtreecommitdiff
path: root/plugins/NewsAggregator/Src/Menus.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-01-05 11:03:20 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-01-05 11:03:20 +0000
commit031ffc0b97cdc214e9195ab9aaa6e5b43c7b59de (patch)
tree9423e691129b3c5cd7aa75428d062f625f3421c5 /plugins/NewsAggregator/Src/Menus.cpp
parent6d7fccf550027cc599d57d9e3d6235d868d0da5b (diff)
short name replaced on long plugin name
removed not used headers git-svn-id: http://svn.miranda-ng.org/main/trunk@2974 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NewsAggregator/Src/Menus.cpp')
-rw-r--r--plugins/NewsAggregator/Src/Menus.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/NewsAggregator/Src/Menus.cpp b/plugins/NewsAggregator/Src/Menus.cpp
index a0217919ec..7ddd0c8a07 100644
--- a/plugins/NewsAggregator/Src/Menus.cpp
+++ b/plugins/NewsAggregator/Src/Menus.cpp
@@ -34,39 +34,39 @@ VOID InitMenu()
mi.position=10100001;
mi.icolibItem = GetIconHandle("main");
mi.ptszName = LPGENT("Check All Feeds");
- mi.pszService = MS_NEWSAGGR_CHECKALLFEEDS;
+ mi.pszService = MS_NEWSAGGREGATOR_CHECKALLFEEDS;
hService2[0] = Menu_AddMainMenuItem(&mi);
mi.position=10100002;
mi.icolibItem = GetIconHandle("addfeed");
mi.ptszName = LPGENT("Add Feed");
- mi.pszService = MS_NEWSAGGR_ADDFEED;
+ mi.pszService = MS_NEWSAGGREGATOR_ADDFEED;
hService2[1] = Menu_AddMainMenuItem(&mi);
mi.position=10100003;
mi.icolibItem = GetIconHandle("importfeeds");
mi.ptszName = LPGENT("Import Feeds");
- mi.pszService = MS_NEWSAGGR_IMPORTFEEDS;
+ mi.pszService = MS_NEWSAGGREGATOR_IMPORTFEEDS;
hService2[2] = Menu_AddMainMenuItem(&mi);
mi.position=10100004;
mi.icolibItem = GetIconHandle("exportfeeds");
mi.ptszName = LPGENT("Export Feeds");
- mi.pszService = MS_NEWSAGGR_EXPORTFEEDS;
+ mi.pszService = MS_NEWSAGGREGATOR_EXPORTFEEDS;
hService2[3] = Menu_AddMainMenuItem(&mi);
// adding contact menu items
mi.position=-0x7FFFFFFA;
mi.icolibItem = GetIconHandle("checkfeed");
mi.ptszName = LPGENT("Check feed");
- mi.pszService = MS_NEWSAGGR_CHECKFEED;
+ mi.pszService = MS_NEWSAGGREGATOR_CHECKFEED;
hService2[4] = Menu_AddContactMenuItem(&mi);
// adding contact menu items
mi.position=-0x7FFFFFFA;
//mi.icolibItem = GetIconHandle("checkfeed");
mi.ptszName = LPGENT("Change feed");
- mi.pszService = MS_NEWSAGGR_CHANGEFEED;
+ mi.pszService = MS_NEWSAGGREGATOR_CHANGEFEED;
hService2[5] = Menu_AddContactMenuItem(&mi);
ZeroMemory(&mi, sizeof(mi));