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();