diff options
author | lvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-10-04 20:47:58 +0000 |
---|---|---|
committer | lvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-10-04 20:47:58 +0000 |
commit | 68d175e786962a7c6f8a2f550e0fcedd2fa0a106 (patch) | |
tree | 168a234ea5fe9477c8352aed57915c2e764decb1 /muggle-plugin/vdr_menu.h | |
parent | ac0b4a4ad469f9689a4f83f1e3b9ebc823ba4703 (diff) | |
download | vdr-plugin-muggle-68d175e786962a7c6f8a2f550e0fcedd2fa0a106.tar.gz vdr-plugin-muggle-68d175e786962a7c6f8a2f550e0fcedd2fa0a106.tar.bz2 |
Added a patch to correct minor errors. Further, remove using namespace directives in order to remain compatible with g++ 2.95.4
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk@200 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'muggle-plugin/vdr_menu.h')
-rw-r--r-- | muggle-plugin/vdr_menu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/muggle-plugin/vdr_menu.h b/muggle-plugin/vdr_menu.h index e827a33..45f60bd 100644 --- a/muggle-plugin/vdr_menu.h +++ b/muggle-plugin/vdr_menu.h @@ -13,11 +13,11 @@ #ifndef _VDR_MENU_H #define _VDR_MENU_H +#include <string> #include <list> #include <vector> #include <osd.h> - #include "i18n.h" class cCommands; @@ -107,10 +107,10 @@ class mgMainMenu : public cOsdMenu mgSelectionTreeNode *m_root; mgSelectionTreeNode *m_node; mgPlaylist *m_current_playlist; - std::vector<std::string> *m_plists; + std::vector< std::string > *m_plists; MuggleStatus m_state; - std::list<int> m_history; + std::list< int > m_history; cCommands *m_playlist_commands; |