diff options
author | svntcreutz <svntcreutz@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2007-07-28 23:34:29 +0000 |
---|---|---|
committer | svntcreutz <svntcreutz@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2007-07-28 23:34:29 +0000 |
commit | 615f3d362c14d4e076fddab6e33491b7bfc22af6 (patch) | |
tree | 8fb600f066cf4a15d399047b72a642dc78ca95d9 /src/xmlmenu.h | |
parent | 6415ce5eee666040471b016055abdd021af33662 (diff) | |
download | vdr-plugin-menuorg-615f3d362c14d4e076fddab6e33491b7bfc22af6.tar.gz vdr-plugin-menuorg-615f3d362c14d4e076fddab6e33491b7bfc22af6.tar.bz2 |
- main menu translation fixed
- added error vars for get xml file loading errors and display message in mainmenu
git-svn-id: file:///home/tobias/sandbox/vdr/--/vdr-pkg/vdr-pkg/submenu/trunk@5669 cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f
Diffstat (limited to 'src/xmlmenu.h')
-rw-r--r-- | src/xmlmenu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xmlmenu.h b/src/xmlmenu.h index f3cf372..84abc8b 100644 --- a/src/xmlmenu.h +++ b/src/xmlmenu.h @@ -10,12 +10,14 @@ namespace xmlpp { class Element; } class XmlMenu { private: + bool _xmlLoadError; int MenuCount; MenuNode _rootMenuNode; public: MenuNode* GetMenuTree(); void LoadXmlMenu(); + bool getErrorStatus(); private: void ParseElement(const xmlpp::Element* a_node, MenuNode* menuNode); |