summaryrefslogtreecommitdiff
path: root/src/xmlmenu.cpp
diff options
context:
space:
mode:
authorsvntobi <svntobi@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f>2007-08-19 14:29:48 +0000
committersvntobi <svntobi@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f>2007-08-19 14:29:48 +0000
commit9ceabe93656984d2a6bb63bcd7e80379f2623ff6 (patch)
treecfd7ea19d9003049c76f05d306b2e275631f30db /src/xmlmenu.cpp
parentd1c550f6f31628b3fa08721d8f129394492afc2a (diff)
downloadvdr-plugin-menuorg-9ceabe93656984d2a6bb63bcd7e80379f2623ff6.tar.gz
vdr-plugin-menuorg-9ceabe93656984d2a6bb63bcd7e80379f2623ff6.tar.bz2
renamed VdrMenuItem to SystemMenuItem
git-svn-id: file:///home/tobias/sandbox/vdr/--/vdr-pkg/vdr-pkg/submenu/trunk@5824 cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f
Diffstat (limited to 'src/xmlmenu.cpp')
-rw-r--r--src/xmlmenu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xmlmenu.cpp b/src/xmlmenu.cpp
index 04a8f8f..b050dbd 100644
--- a/src/xmlmenu.cpp
+++ b/src/xmlmenu.cpp
@@ -24,7 +24,7 @@
#include <libxml++/libxml++.h>
#include <exception>
#include <vdr/plugin.h>
-#include "vdrmenuitem.h"
+#include "systemmenuitem.h"
#include "submenuitem.h"
#include "pluginmenuitem.h"
@@ -113,7 +113,7 @@ MenuNode* XmlMenu::AddSubMenuItem(string name, MenuNode* menu)
void XmlMenu::AddSystemMenuItem(string name, MenuNode* menu)
{
- menu->AddChild(new VdrMenuItem(name, MenuTextToVdrState(name)));
+ menu->AddChild(new SystemMenuItem(name, MenuTextToVdrState(name)));
}
void XmlMenu::AddPluginMenuItem(string pluginName, MenuNode* menu)