summaryrefslogtreecommitdiff
path: root/PLUGINS/src
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2015-07-17 10:15:35 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2015-07-17 10:15:35 +0200
commit8a7bc6a0bbf60cae8b6391a630880aad5cba3363 (patch)
tree763e8530bb7123fdb9f5fe1165d2e66efe1a0176 /PLUGINS/src
parent894a3926401134b758b9f908d9c41b2fefa654bb (diff)
downloadvdr-8a7bc6a0bbf60cae8b6391a630880aad5cba3363.tar.gz
vdr-8a7bc6a0bbf60cae8b6391a630880aad5cba3363.tar.bz2
Added a missing 'const'
Diffstat (limited to 'PLUGINS/src')
-rw-r--r--PLUGINS/src/pictures/HISTORY4
-rw-r--r--PLUGINS/src/pictures/menu.c4
-rw-r--r--PLUGINS/src/pictures/pictures.c4
3 files changed, 8 insertions, 4 deletions
diff --git a/PLUGINS/src/pictures/HISTORY b/PLUGINS/src/pictures/HISTORY
index bbe16851..0d009fa1 100644
--- a/PLUGINS/src/pictures/HISTORY
+++ b/PLUGINS/src/pictures/HISTORY
@@ -99,3 +99,7 @@ VDR Plugin 'pictures' Revision History
2015-02-19: Version 2.2.0
- Official release.
+
+2015-07.23: Version 2.3.1
+
+- Added a missing 'const'.
diff --git a/PLUGINS/src/pictures/menu.c b/PLUGINS/src/pictures/menu.c
index 6a64d480..afb01a90 100644
--- a/PLUGINS/src/pictures/menu.c
+++ b/PLUGINS/src/pictures/menu.c
@@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
- * $Id: menu.c 1.1 2008/01/13 11:35:18 kls Exp $
+ * $Id: menu.c 4.1 2015/07/17 10:13:56 kls Exp $
*/
#include "menu.h"
@@ -85,7 +85,7 @@ eOSState cPictureMenu::SelectItem(const char *Path, bool SlideShow)
if (Item) {
const cList<cPictureEntry> *l = pictureEntry->Entries();
if (l) {
- cPictureEntry *pe = l->Get(Current());
+ const cPictureEntry *pe = l->Get(Current());
if (pe) {
if (SlideShow) {
cControl::Launch(new cPictureControl(pictures, pe, true));
diff --git a/PLUGINS/src/pictures/pictures.c b/PLUGINS/src/pictures/pictures.c
index 46a08716..cb020e6e 100644
--- a/PLUGINS/src/pictures/pictures.c
+++ b/PLUGINS/src/pictures/pictures.c
@@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
- * $Id: pictures.c 3.2 2015/02/17 13:12:50 kls Exp $
+ * $Id: pictures.c 4.1 2015/07/17 10:14:22 kls Exp $
*/
#include <getopt.h>
@@ -11,7 +11,7 @@
#include "menu.h"
#include "player.h"
-static const char *VERSION = "2.2.0";
+static const char *VERSION = "2.3.1";
static const char *DESCRIPTION = trNOOP("A simple picture viewer");
static const char *MAINMENUENTRY = trNOOP("Pictures");