diff options
Diffstat (limited to 'src/xmlmenu.cpp')
-rw-r--r-- | src/xmlmenu.cpp | 4 |
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) |