diff -r 9a0fcbb3925b -r e2b83f60b858 nettools/conntest/src/ConnTestView.cpp --- a/nettools/conntest/src/ConnTestView.cpp Fri Mar 19 09:26:16 2010 +0200 +++ b/nettools/conntest/src/ConnTestView.cpp Fri Apr 16 14:51:55 2010 +0300 @@ -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); }