summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/wlan/wlanmodule.cpp
authorbenmeyer <benmeyer>2002-10-22 20:41:01 (UTC)
committer benmeyer <benmeyer>2002-10-22 20:41:01 (UTC)
commit1e1b3e398d6b978a9c2bbd85d8f6b7aafbf72b2f (patch) (unidiff)
treec1e6feec60794552bdca607f4dbe180e1988a924 /noncore/settings/networksettings/wlan/wlanmodule.cpp
parent44a60b35b903b68f2f60f5ba29b84db1563dd9f3 (diff)
downloadopie-1e1b3e398d6b978a9c2bbd85d8f6b7aafbf72b2f.zip
opie-1e1b3e398d6b978a9c2bbd85d8f6b7aafbf72b2f.tar.gz
opie-1e1b3e398d6b978a9c2bbd85d8f6b7aafbf72b2f.tar.bz2
info now works
Diffstat (limited to 'noncore/settings/networksettings/wlan/wlanmodule.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/wlan/wlanmodule.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/settings/networksettings/wlan/wlanmodule.cpp b/noncore/settings/networksettings/wlan/wlanmodule.cpp
index ab0b9a5..73e753c 100644
--- a/noncore/settings/networksettings/wlan/wlanmodule.cpp
+++ b/noncore/settings/networksettings/wlan/wlanmodule.cpp
@@ -84,5 +84,5 @@ QWidget *WLANModule::information(Interface *i, QTabWidget **tabWidget){
84 info->stationLabel->setText(we.station()); 84 info->stationLabel->setText(we.station());
85 info->modeLabel->setText(we.mode()); 85 info->modeLabel->setText(we.mode());
86 info->freqLabel->setText(QString("%1").arg(we.frequency())); 86 info->freqLabel->setText(QString("%1 GHz").arg(we.frequency()));
87 int signal = 0; 87 int signal = 0;
88 int noise = 0; 88 int noise = 0;
@@ -92,4 +92,5 @@ QWidget *WLANModule::information(Interface *i, QTabWidget **tabWidget){
92 info->noiseProgressBar->setProgress(noise); 92 info->noiseProgressBar->setProgress(noise);
93 info->qualityProgressBar->setProgress(quality); 93 info->qualityProgressBar->setProgress(quality);
94 info->rateLabel->setText(QString("%1 Mb/s").arg(we.rate()));
94 return info; 95 return info;
95} 96}