From 824df74f00e1f00c88a20a278e2d5d40e805ecbe Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Tue, 26 Jun 2012 17:08:33 +0400 Subject: [PATCH] gui/network_setup.cpp: add network services submenu --- src/gui/network_setup.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/gui/network_setup.cpp b/src/gui/network_setup.cpp index 6ed6c6830..60bfcc11d 100644 --- a/src/gui/network_setup.cpp +++ b/src/gui/network_setup.cpp @@ -44,6 +44,8 @@ #include #include +#include + #include #include #include @@ -321,6 +323,10 @@ int CNetworkSetup::showNetworkSetup() CProxySetup proxy(LOCALE_MAINSETTINGS_NETWORK); networkSettings->addItem(new CMenuForwarder(LOCALE_FLASHUPDATE_PROXYSERVER_SEP, true, NULL, &proxy, NULL, CRCInput::RC_0, NEUTRINO_ICON_BUTTON_0)); + //services + CNetworkServiceSetup services; + networkSettings->addItem(new CMenuForwarder(LOCALE_NETWORKMENU_SERVICES, true, NULL, &services, NULL, CRCInput::RC_1, NEUTRINO_ICON_BUTTON_1)); + int ret = 0; while(true) { int res = menu_return::RETURN_EXIT;