diff options
Diffstat (limited to 'src/xmlmenu.h')
-rw-r--r-- | src/xmlmenu.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xmlmenu.h b/src/xmlmenu.h index a5849fd..3f24644 100644 --- a/src/xmlmenu.h +++ b/src/xmlmenu.h @@ -16,9 +16,10 @@ class XmlMenu { private: //void createMenu(); // create the Menu Node - void parseNode(const Node* a_node, unsigned int Parent, MenuNode *parentNode); + void parseNode(const Node* a_node, unsigned int Parent); eOSState geteOSState(const Glib::ustring& name); // gets the eOSState for the given string - PluginItemAndIndex getPlugin(const Glib::ustring& name); // gets the plugin for the given string + PluginItemAndIndex* getPlugin(const Glib::ustring& name); // gets the plugin for the given string + MenuNode* _subMenu[30]; // holds the submenus public: MenuNode _rootMenuNode; // hold the Menue Nodes void loadXmlMenu(); // load the xmlfile |