mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 16:31:05 +02:00
Preparing the menu classes for Lua Part #2
- Remove CMenuForwarderNonLocalized
- Add overloaded function CMenuForwarder for non local
THX Martii
Origin commit data
------------------
Branch: ni/coolstream
Commit: b41819190d
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-01-16 (Thu, 16 Jan 2014)
Origin message was:
------------------
Preparing the menu classes for Lua Part #2
- Remove CMenuForwarderNonLocalized
- Add overloaded function CMenuForwarder for non local
THX Martii
------------------
This commit was generated by Migit
This commit is contained in:
@@ -233,7 +233,7 @@ int CNetworkSetup::showNetworkSetup()
|
||||
m0->setHint("", LOCALE_MENU_HINT_NET_SETUPNOW);
|
||||
|
||||
//eth id
|
||||
CMenuForwarder *mac = new CMenuForwarderNonLocalized("MAC", false, mac_addr);
|
||||
CMenuForwarder *mac = new CMenuForwarder("MAC", false, mac_addr);
|
||||
|
||||
//prepare input entries
|
||||
CIPInput networkSettings_NetworkIP(LOCALE_NETWORKMENU_IPADDRESS , network_address , LOCALE_IPSETUP_HINT_1, LOCALE_IPSETUP_HINT_2, this);
|
||||
@@ -828,7 +828,7 @@ int CNetworkSetup::showWlanList()
|
||||
const char * icon = NULL;
|
||||
if (networks[i].encrypted)
|
||||
icon = NEUTRINO_ICON_LOCK;
|
||||
CMenuForwarderNonLocalized * net = new CMenuForwarderNonLocalized(networks[i].ssid.c_str(), true, option[i], selector, cnt, CRCInput::RC_nokey, NULL, icon);
|
||||
CMenuForwarder * net = new CMenuForwarder(networks[i].ssid.c_str(), true, option[i], selector, cnt, CRCInput::RC_nokey, NULL, icon);
|
||||
net->setItemButton(NEUTRINO_ICON_BUTTON_OKAY, true);
|
||||
wlist.addItem(net, networks[i].ssid == network_ssid);
|
||||
}
|
||||
|
Reference in New Issue
Block a user