mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 08:21:12 +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
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();
|
||||
}
|
||||
|
||||
|
@@ -504,7 +504,7 @@ class CMenuWidget : public CMenuTarget, public CComponentsSignals
|
||||
unsigned int saveScreen_x;
|
||||
protected:
|
||||
std::string nameString;
|
||||
neutrino_locale_t name;
|
||||
|
||||
CFrameBuffer *frameBuffer;
|
||||
std::vector<CMenuItem*> items;
|
||||
std::vector<int> page_start;
|
||||
|
Reference in New Issue
Block a user