diff options
author | svntobi <svntobi@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2007-08-26 09:31:12 +0000 |
---|---|---|
committer | svntobi <svntobi@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2007-08-26 09:31:12 +0000 |
commit | 891e608a185e1cde99ce327feeb59f6d176d68c9 (patch) | |
tree | eb4e918125c454f361bcc90bbc0d2a106ab4d1c4 /src/menuconfiguration.h | |
parent | 8c69e3880a9c0e48ea130962ceddd43c661f3888 (diff) | |
download | vdr-plugin-menuorg-891e608a185e1cde99ce327feeb59f6d176d68c9.tar.gz vdr-plugin-menuorg-891e608a185e1cde99ce327feeb59f6d176d68c9.tar.bz2 |
- Fixed system menu node creation
- Changed parameter order
- Use default paramter title="" for PluginMenuNode
git-svn-id: file:///home/tobias/sandbox/vdr/--/vdr-pkg/vdr-pkg/menuorg/trunk@5997 cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f
Diffstat (limited to 'src/menuconfiguration.h')
-rw-r--r-- | src/menuconfiguration.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/menuconfiguration.h b/src/menuconfiguration.h index f11d2f4..8ef64b6 100644 --- a/src/menuconfiguration.h +++ b/src/menuconfiguration.h @@ -46,8 +46,8 @@ class MenuConfiguration eOSState MenuTextToVdrState(std::string menuText); bool FindPluginByName(std::string name, cPlugin*& plugin, int& pluginIndex); MenuNode* AddSubMenuNode(std::string name, MenuNode* menu); - void AddSystemMenuNode(std::string name, MenuNode* menu); - void AddPluginMenuNode(std::string pluginName, MenuNode* menu, std::string title); + void AddSystemMenuNode(std::string name, std::string title, MenuNode* menu); + void AddPluginMenuNode(std::string pluginName, std::string title, MenuNode* menu); void AddUnconfiguredPlugins(MenuNode* menu); void AddCommandMenuNode(std::string name, std::string command, bool confirm, MenuNode* menu); std::string UnicodeToLocaleOrIso8859(Glib::ustring unicodeString); |