diff options
author | Darrell Anderson <[email protected]> | 2012-04-13 02:54:00 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-04-13 02:54:00 -0500 |
commit | ba56429ce77d028d6f23cd3a9cec44a7a3f05b52 (patch) | |
tree | 0504e27232989b4bd8aec2668ee8a2824eacff40 /src | |
parent | cae5e038aac95012d1a8b11018bdc7a36632d7a5 (diff) | |
download | wlassistant-ba56429ce77d028d6f23cd3a9cec44a7a3f05b52.tar.gz wlassistant-ba56429ce77d028d6f23cd3a9cec44a7a3f05b52.zip |
Fix inadvertent "TQ" changes.
Diffstat (limited to 'src')
-rw-r--r-- | src/netlistviewitem.cpp | 2 | ||||
-rw-r--r-- | src/watools.cpp | 2 | ||||
-rw-r--r-- | src/watools.h | 2 | ||||
-rw-r--r-- | src/wlassistant.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/netlistviewitem.cpp b/src/netlistviewitem.cpp index 178b7e3..2635e06 100644 --- a/src/netlistviewitem.cpp +++ b/src/netlistviewitem.cpp @@ -66,7 +66,7 @@ void NetListViewItem::paintCell(TQPainter *p, const TQColorGroup &cg, int column switch (column) { - /// DRAW TQUALITY /// + /// DRAW QUALITY /// case mQualityColumn: { TQPixmap qualityIcon = SmallIcon("knewstuff"); TQPixmap qualityIconGray = KIconEffect().apply( qualityIcon, KIconEffect::ToGray, 1, TQt::black, true ); diff --git a/src/watools.cpp b/src/watools.cpp index eaaf51f..5814274 100644 --- a/src/watools.cpp +++ b/src/watools.cpp @@ -137,7 +137,7 @@ int WATools::quality( const char* _ifname ) ///returns active link quality in ra unsigned int std_qual = (100*stats.qual.qual)/50; //calculate normalized quality (0-100). 50 is the best noise/signal difference if (std_qual > 100) std_qual = 100; -// std::cout << "* TQUALITY: " << std_qual << std::endl; +// std::cout << "* QUALITY: " << std_qual << std::endl; return std_qual; } diff --git a/src/watools.h b/src/watools.h index 5e03b8a..4e8f931 100644 --- a/src/watools.h +++ b/src/watools.h @@ -50,7 +50,7 @@ public: static bool isWireless( const char* _ifname ); //returns true if iface is a valid wireless interface static char* essid( const char* _ifname = 0 ); //returns current ESSID static char* ap( const char* _ifname = 0 ); //returns current AP - static int quality( const char* _ifname = 0 ); //returns current TQUALITY + static int quality( const char* _ifname = 0 ); //returns current QUALITY static int txpower( const char* _ifname = 0 ); //returns current TXPOWER static bool hasKey( const char* _ifname = 0 ); //returns true if WEP key for the specified interface is set diff --git a/src/wlassistant.cpp b/src/wlassistant.cpp index 5677de9..a0d8202 100644 --- a/src/wlassistant.cpp +++ b/src/wlassistant.cpp @@ -410,7 +410,7 @@ void WirelessAssistant::parseScan( const TQString & output ) } else hidden=false; - // GET TQUALITY + // GET QUALITY int wsignal; //check if driver reports quality directly qualInt = getVal(section, "Quality\\D+(\\d+)").toInt(); |