mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 00:11:08 +02:00
CMenuWidget: use only nameString as container for widget name
neutrino_locale_t name could be transformed always to real string to
unify this container
Origin commit data
------------------
Branch: ni/coolstream
Commit: 2dda93ed2b
Author: Thilo Graf <dbt@novatux.de>
Date: 2017-02-09 (Thu, 09 Feb 2017)
------------------
This commit was generated by Migit
This commit is contained in:
@@ -534,8 +534,7 @@ CMenuGlobal* CMenuGlobal::getInstance()
|
||||
|
||||
CMenuWidget::CMenuWidget()
|
||||
{
|
||||
nameString = g_Locale->getText(NONEXISTANT_LOCALE);
|
||||
name = NONEXISTANT_LOCALE;
|
||||
nameString = "";
|
||||
iconfile = "";
|
||||
selected = -1;
|
||||
iconOffset = 0;
|
||||
@@ -555,7 +554,6 @@ CMenuWidget::CMenuWidget()
|
||||
|
||||
CMenuWidget::CMenuWidget(const neutrino_locale_t Name, const std::string & Icon, const int mwidth, const mn_widget_id_t &w_index)
|
||||
{
|
||||
name = Name;
|
||||
nameString = g_Locale->getText(Name);
|
||||
preselected = -1;
|
||||
Init(Icon, mwidth, w_index);
|
||||
@@ -563,7 +561,6 @@ CMenuWidget::CMenuWidget(const neutrino_locale_t Name, const std::string & Icon,
|
||||
|
||||
CMenuWidget::CMenuWidget(const std::string &Name, const std::string & Icon, const int mwidth, const mn_widget_id_t &w_index)
|
||||
{
|
||||
name = NONEXISTANT_LOCALE;
|
||||
nameString = Name;
|
||||
preselected = -1;
|
||||
Init(Icon, mwidth, w_index);
|
||||
@@ -729,8 +726,6 @@ CMenuItem* CMenuWidget::getItem(const uint& item_id)
|
||||
|
||||
const char *CMenuWidget::getName()
|
||||
{
|
||||
if (name != NONEXISTANT_LOCALE)
|
||||
return g_Locale->getText(name);
|
||||
return nameString.c_str();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user