diff --git a/data/icons/status/channel/Makefile.am b/data/icons/status/channel/Makefile.am index b06a574fb..5fa7a314b 100644 --- a/data/icons/status/channel/Makefile.am +++ b/data/icons/status/channel/Makefile.am @@ -8,9 +8,9 @@ install_DATA = \ dd.png \ dd_avail.png \ dd_gray.png \ - radiotextget.png \ - radiotextoff.png \ - radiotextwait.png \ + radiotext_get.png \ + radiotext_off.png \ + radiotext_wait.png \ res_000.png \ res_1080.png \ res_1280.png \ diff --git a/data/icons/status/channel/radiotextget.png b/data/icons/status/channel/radiotext_get.png similarity index 100% rename from data/icons/status/channel/radiotextget.png rename to data/icons/status/channel/radiotext_get.png diff --git a/data/icons/status/channel/radiotextoff.png b/data/icons/status/channel/radiotext_off.png similarity index 100% rename from data/icons/status/channel/radiotextoff.png rename to data/icons/status/channel/radiotext_off.png diff --git a/data/icons/status/channel/radiotextwait.png b/data/icons/status/channel/radiotext_wait.png similarity index 100% rename from data/icons/status/channel/radiotextwait.png rename to data/icons/status/channel/radiotext_wait.png diff --git a/src/gui/infoviewer_bb.cpp b/src/gui/infoviewer_bb.cpp index 27efd108b..b638b0182 100644 --- a/src/gui/infoviewer_bb.cpp +++ b/src/gui/infoviewer_bb.cpp @@ -173,7 +173,7 @@ void CInfoViewerBB::getBBIconInfo() break; case CInfoViewerBB::ICON_RT: if (isRadioMode && g_settings.radiotext_enable) - iconView = checkBBIcon(NEUTRINO_ICON_RADIOTEXTGET, &w, &h); + iconView = checkBBIcon(NEUTRINO_ICON_RADIOTEXT_GET, &w, &h); break; case CInfoViewerBB::ICON_DD: if( g_settings.infobar_show_dd_available ) @@ -541,9 +541,9 @@ void CInfoViewerBB::showIcon_RadioText(bool rt_available) std::string rt_icon; if (rt_available) - rt_icon = (g_Radiotext->S_RtOsd) ? NEUTRINO_ICON_RADIOTEXTGET : NEUTRINO_ICON_RADIOTEXTWAIT; + rt_icon = (g_Radiotext->S_RtOsd) ? NEUTRINO_ICON_RADIOTEXT_GET : NEUTRINO_ICON_RADIOTEXT_WAIT; else - rt_icon = NEUTRINO_ICON_RADIOTEXTOFF; + rt_icon = NEUTRINO_ICON_RADIOTEXT_OFF; showBBIcons(CInfoViewerBB::ICON_RT, rt_icon); } diff --git a/src/gui/widget/icons.h b/src/gui/widget/icons.h index 34153e57f..9bf251dc6 100644 --- a/src/gui/widget/icons.h +++ b/src/gui/widget/icons.h @@ -253,9 +253,9 @@ #define NEUTRINO_ICON_DD "dd" #define NEUTRINO_ICON_DD_AVAIL "dd_avail" #define NEUTRINO_ICON_DD_GREY "dd_gray" -#define NEUTRINO_ICON_RADIOTEXTGET "radiotextget" -#define NEUTRINO_ICON_RADIOTEXTOFF "radiotextoff" -#define NEUTRINO_ICON_RADIOTEXTWAIT "radiotextwait" +#define NEUTRINO_ICON_RADIOTEXT_GET "radiotext_get" +#define NEUTRINO_ICON_RADIOTEXT_OFF "radiotext_off" +#define NEUTRINO_ICON_RADIOTEXT_WAIT "radiotext_wait" #define NEUTRINO_ICON_RESOLUTION_000 "res_000" #define NEUTRINO_ICON_RESOLUTION_288 "res_288" #define NEUTRINO_ICON_RESOLUTION_352 "res_352" @@ -274,7 +274,7 @@ #define NEUTRINO_ICON_RESOLUTION_HD "res_hd" #define NEUTRINO_ICON_RESOLUTION_SD "res_sd" #define NEUTRINO_ICON_RESOLUTION_UHD "res_uhd" -#define NEUTRINO_ICON_SCRAMBLED "ca" +#define NEUTRINO_ICON_SCRAMBLED "ca" #define NEUTRINO_ICON_SCRAMBLED_GREY "ca_gray" #define NEUTRINO_ICON_SUBT "subt" #define NEUTRINO_ICON_SUBT_GREY "subt_gray"