From 8a7bc6a0bbf60cae8b6391a630880aad5cba3363 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Fri, 17 Jul 2015 10:15:35 +0200 Subject: Added a missing 'const' --- PLUGINS/src/pictures/menu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'PLUGINS/src/pictures/menu.c') 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 *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)); -- cgit v1.2.3