diff --git a/data/icons/hints/Makefile.am b/data/icons/hints/Makefile.am index 895a4f4cb..40b4f58ec 100644 --- a/data/icons/hints/Makefile.am +++ b/data/icons/hints/Makefile.am @@ -56,4 +56,6 @@ install_DATA = \ hint_tvradio_switch.png \ hint_vfd.png \ hint_video.png \ + hint_webtv.png \ + hint_xmltv.png \ hint_ytplay.png diff --git a/data/icons/hints/hint_webtv.png b/data/icons/hints/hint_webtv.png new file mode 100644 index 000000000..f5f7c14b3 Binary files /dev/null and b/data/icons/hints/hint_webtv.png differ diff --git a/data/icons/hints/hint_xmltv.png b/data/icons/hints/hint_xmltv.png new file mode 100644 index 000000000..7ea15a90d Binary files /dev/null and b/data/icons/hints/hint_xmltv.png differ diff --git a/src/gui/mediaplayer_setup.cpp b/src/gui/mediaplayer_setup.cpp index 3fadf7753..3b312ae95 100644 --- a/src/gui/mediaplayer_setup.cpp +++ b/src/gui/mediaplayer_setup.cpp @@ -102,12 +102,12 @@ int CMediaPlayerSetup::showMediaPlayerSetup() CWebTVSetup wsetup; mf = new CMenuForwarder(LOCALE_WEBTV_HEAD, true, NULL, &wsetup, "show_menu", CRCInput::RC_yellow); - mf->setHint(NEUTRINO_ICON_HINT_TVMODE /* FIXME */, LOCALE_MENU_HINT_WEBTV_SETUP); + mf->setHint(NEUTRINO_ICON_HINT_WEBTV, LOCALE_MENU_HINT_WEBTV_SETUP); mediaSetup->addItem(mf); CXMLTVSetup xmltvsetup; mf = new CMenuForwarder(LOCALE_XMLTV_HEAD, true, NULL, &xmltvsetup, "show_menu", CRCInput::RC_blue); - mf->setHint(NEUTRINO_ICON_HINT_TVMODE /* FIXME */, LOCALE_MENU_HINT_XMLTV_SETUP); + mf->setHint(NEUTRINO_ICON_HINT_XMLTV, LOCALE_MENU_HINT_XMLTV_SETUP); mediaSetup->addItem(mf); mediaSetup->addItem(new CMenuSeparator(CMenuSeparator::LINE | CMenuSeparator::STRING, LOCALE_MAINMENU_MOVIEPLAYER)); diff --git a/src/gui/widget/icons.h b/src/gui/widget/icons.h index 4c2a82845..508be82ea 100644 --- a/src/gui/widget/icons.h +++ b/src/gui/widget/icons.h @@ -152,6 +152,8 @@ #define NEUTRINO_ICON_HINT_INET_RADIO "hint_inetradio" #define NEUTRINO_ICON_HINT_MOVIE "hint_movie" #define NEUTRINO_ICON_HINT_PICVIEW "hint_picview" +#define NEUTRINO_ICON_HINT_WEBTV "hint_webtv" +#define NEUTRINO_ICON_HINT_XMLTV "hint_xmltv" #define NEUTRINO_ICON_HINT_YTPLAY "hint_ytplay" #define NEUTRINO_ICON_HINT_MB "hint_mb"