From 3e899e6cda0ce9ba19daa4505ef4cb95aff4fd00 Mon Sep 17 00:00:00 2001 From: lvw Date: Sun, 10 Oct 2004 13:58:17 +0000 Subject: Error in version distinction removed git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/tags/0.0.7-BETA@220 e10066b5-e1e2-0310-b819-94efdf66514b --- muggle.c | 2 +- muggle.doxygen | 2 +- vdr_player.c | 5 ++++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/muggle.c b/muggle.c index 14ff37b..4cc7b0d 100644 --- a/muggle.c +++ b/muggle.c @@ -22,7 +22,7 @@ #include #include -static const char *VERSION = "0.0.6"; +static const char *VERSION = "0.0.7"; static const char *DESCRIPTION = "Media juggle plugin for VDR"; static const char *MAINMENUENTRY = "Muggle"; diff --git a/muggle.doxygen b/muggle.doxygen index 8703db4..d393679 100644 --- a/muggle.doxygen +++ b/muggle.doxygen @@ -23,7 +23,7 @@ PROJECT_NAME = Muggle media plugin # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.0.5 +PROJECT_NUMBER = 0.0.7 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/vdr_player.c b/vdr_player.c index d69897f..d46a4af 100644 --- a/vdr_player.c +++ b/vdr_player.c @@ -1174,23 +1174,26 @@ void mgPlayerControl::Display() } // now an osd is open, go on - if( m_progress_view ) { +#if VDRVERSNUM >= 10307 if( m_menu ) { delete m_menu; m_menu = NULL; } +#endif ShowProgress(); } else { +#if VDRVERSNUM >= 10307 if( m_display ) { delete m_display; m_display = NULL; } +#endif ShowContents(); } } -- cgit v1.2.3