cmmanager/cpwlanapplugin/src/cpwlanapview.cpp
changeset 53 4af712113915
parent 27 489cf6208544
--- a/cmmanager/cpwlanapplugin/src/cpwlanapview.cpp	Tue Jul 06 14:42:41 2010 +0300
+++ b/cmmanager/cpwlanapplugin/src/cpwlanapview.cpp	Wed Aug 18 10:10:23 2010 +0300
@@ -167,7 +167,8 @@
         SIGNAL(editingFinished()),
         this,
         SLOT(connectionNameChanged()));
-    mApSettingsGroupItem->appendChild(mConnectionNameItem);
+    mConnectionNameItem->setContentWidgetData("objectName", "connectionNameEdit");
+    mApSettingsGroupItem->appendChild(mConnectionNameItem); 
     
     // WLAN network name
     mWlanNetworkNameItem = new CpSettingFormItemData(
@@ -179,6 +180,7 @@
         SIGNAL(editingFinished()),
         this,
         SLOT(wlanNetworkNameChanged()));
+    mWlanNetworkNameItem->setContentWidgetData("objectName", "wlanNetworkNameEdit");
     mApSettingsGroupItem->appendChild(mWlanNetworkNameItem);
     
     // Network status
@@ -200,6 +202,7 @@
         SIGNAL(currentIndexChanged(int)),
         this,
         SLOT(networkStatusChanged(int)));
+    mNetworkStatusItem->setContentWidgetData("objectName", "networkStatusCB");
     mApSettingsGroupItem->appendChild(mNetworkStatusItem);
     
     // Network mode
@@ -221,6 +224,7 @@
         SIGNAL(currentIndexChanged(int)),
         this,
         SLOT(networkModeChanged(int)));
+    mNetworkModeItem->setContentWidgetData("objectName", "networkModeCB");
     mApSettingsGroupItem->appendChild(mNetworkModeItem);
     
     // Ad-hoc channel
@@ -238,6 +242,7 @@
         SIGNAL(currentIndexChanged(int)),
         this,
         SLOT(securityModeChanged(int)));
+    mSecurityModeItem->setContentWidgetData("objectName", "securityModeCB");
     mApSettingsGroupItem->appendChild(mSecurityModeItem);
     
     // Homepage
@@ -250,6 +255,7 @@
         SIGNAL(editingFinished()),
         this,
         SLOT(homepageChanged()));
+    mHomepageItem->setContentWidgetData("objectName", "homepageEdit");
     mApSettingsGroupItem->appendChild(mHomepageItem);
     
     // Read settings from CommsDat and update widgets
@@ -616,7 +622,7 @@
             CMManagerShim::CmName);
         mConnectionNameItem->setContentWidgetData("text", connectionName);
     }
-    
+
     OstTraceFunctionExit0(CPWLANAPVIEW_CONNECTIONNAMECHANGED_EXIT);
 }