diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-02 07:29:25 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-02 07:29:25 +0000 |
commit | 2f791ecf181cebc107ea2f68f5f7b29456844f39 (patch) | |
tree | 941f2fd6b7cfb353814323f8c1bb083dbbda8af5 /src/watools.cpp | |
parent | 2e4e9860d4cc5b9462f9875c100dd13d55365563 (diff) | |
download | wlassistant-2f791ecf181cebc107ea2f68f5f7b29456844f39.tar.gz wlassistant-2f791ecf181cebc107ea2f68f5f7b29456844f39.zip |
TQt4 port wlassistant
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/wlassistant@1239055 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/watools.cpp')
-rw-r--r-- | src/watools.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/watools.cpp b/src/watools.cpp index 5814274..eaaf51f 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 << "* QUALITY: " << std_qual << std::endl; +// std::cout << "* TQUALITY: " << std_qual << std::endl; return std_qual; } |