Revision: 201007 RCL_3
authorDremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 12 Mar 2010 15:41:15 +0200
branchRCL_3
changeset 7 33df273ab0a3
parent 6 fb371b733a4c
child 8 86091f1c2f4d
Revision: 201007 Kit: 201008
nettools/conntest/src/ConnTestView.cpp
--- a/nettools/conntest/src/ConnTestView.cpp	Fri Feb 19 22:37:32 2010 +0200
+++ b/nettools/conntest/src/ConnTestView.cpp	Fri Mar 12 15:41:15 2010 +0200
@@ -1219,7 +1219,18 @@
     TDateTime time = currentTime.DateTime();
     text.AppendFormat(_L8("%02u:%02u:%02u "),
         time.Hour(), time.Minute(), time.Second() );
-    text.AppendFormat(_L8("Wlan: RssChanged: %d, %d\n"), aRssClass, aRss);
+    if ( aRssClass == EWlanRssClassNormal )
+        {
+        text.AppendFormat(_L8("Wlan RSS: -%ddBm (good)\f"), aRss);
+        }
+    else if ( aRssClass == EWlanRssClassWeak )
+        {
+        text.AppendFormat(_L8("Wlan RSS: -%ddBm (weak)\f"), aRss);
+        }
+    else
+        {
+        text.AppendFormat(_L8("Wlan RSS: -%ddBm (unknown)\f"), aRss);
+        }
     iContainer->PrintNotify(text);
     }