diff options
author | svntobi <svntobi@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2007-08-19 20:17:20 +0000 |
---|---|---|
committer | svntobi <svntobi@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2007-08-19 20:17:20 +0000 |
commit | 86095cf273e954342dd31f9b4aec53f57995a857 (patch) | |
tree | dd107362d5a3dbe0d4686049be6107631c1dfe4d /src/systemmenunode.cpp | |
parent | ade4a322c343a499e7df685787ac00119083556e (diff) | |
download | vdr-plugin-menuorg-86095cf273e954342dd31f9b4aec53f57995a857.tar.gz vdr-plugin-menuorg-86095cf273e954342dd31f9b4aec53f57995a857.tar.bz2 |
Âmorerenamings
git-svn-id: file:///home/tobias/sandbox/vdr/--/vdr-pkg/vdr-pkg/submenu/trunk@5832 cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f
Diffstat (limited to 'src/systemmenunode.cpp')
-rw-r--r-- | src/systemmenunode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systemmenunode.cpp b/src/systemmenunode.cpp index 2b9f2dd..4242bac 100644 --- a/src/systemmenunode.cpp +++ b/src/systemmenunode.cpp @@ -22,7 +22,7 @@ #include "systemmenunode.h" #include <vdr/mainmenuitemsprovider.h> -#include "custommainmenuitem.h" +#include "osditemdefinition.h" SystemMenuNode::SystemMenuNode(std::string text, eOSState state) { @@ -32,5 +32,5 @@ SystemMenuNode::SystemMenuNode(std::string text, eOSState state) IMenuItemDefinition* SystemMenuNode::CreateMenuItemDefinition() { - return new CustomMainMenuItem(new cOsdItem(_text.c_str(), _state)); + return new OsdItemDefinition(new cOsdItem(_text.c_str(), _state)); } |