diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:58:08 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:58:08 -0600 |
commit | 1de96857f5b0ed5d4a36e9486ffc8c7f8c802f98 (patch) | |
tree | e24fdc0514249de1233dd5dc07f09d07a35f4269 /wifi/status.cpp | |
parent | 089118c18533dfa3e6ce5065dbebdd4db94051f1 (diff) | |
download | tdenetwork-1de96857f5b0ed5d4a36e9486ffc8c7f8c802f98.tar.gz tdenetwork-1de96857f5b0ed5d4a36e9486ffc8c7f8c802f98.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'wifi/status.cpp')
-rw-r--r-- | wifi/status.cpp | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/wifi/status.cpp b/wifi/status.cpp index 3d344800..4d8b5784 100644 --- a/wifi/status.cpp +++ b/wifi/status.cpp @@ -69,79 +69,79 @@ bool Status::generateStatsWidget () { if (freq / 1000000. > 5690.) { - temp3 = temp3.tqarg(140); + temp3 = temp3.arg(140); } else if (freq / 1000000. > 5670.) { - temp3 = temp3.tqarg(136); + temp3 = temp3.arg(136); } else if (freq / 1000000. > 5650.) { - temp3 = temp3.tqarg(132); + temp3 = temp3.arg(132); } else if (freq / 1000000. > 5630.) { - temp3 = temp3.tqarg(128); + temp3 = temp3.arg(128); } else if (freq / 1000000. > 5610.) { - temp3 = temp3.tqarg(124); + temp3 = temp3.arg(124); } else if (freq / 1000000. > 5590.) { - temp3 = temp3.tqarg(120); + temp3 = temp3.arg(120); } else if (freq / 1000000. > 5570.) { - temp3 = temp3.tqarg(116); + temp3 = temp3.arg(116); } else if (freq / 1000000. > 5550.) { - temp3 = temp3.tqarg(112); + temp3 = temp3.arg(112); } else if (freq / 1000000. > 5530.) { - temp3 = temp3.tqarg(108); + temp3 = temp3.arg(108); } else if (freq / 1000000. > 5510.) { - temp3 = temp3.tqarg(104); + temp3 = temp3.arg(104); } else if (freq / 1000000. > 5490.) { - temp3 = temp3.tqarg(100); + temp3 = temp3.arg(100); } else if (freq / 1000000. > 5310.) { - temp3 = temp3.tqarg(64); + temp3 = temp3.arg(64); } else if (freq / 1000000. > 5290.) { - temp3 = temp3.tqarg(60); + temp3 = temp3.arg(60); } else if (freq / 1000000. > 5270.) { - temp3 = temp3.tqarg(56); + temp3 = temp3.arg(56); } else if (freq / 1000000. > 5250.) { - temp3 = temp3.tqarg(52); + temp3 = temp3.arg(52); } else if (freq / 1000000. > 5230.) { - temp3 = temp3.tqarg(48); + temp3 = temp3.arg(48); } else if (freq / 1000000. > 5210.) { - temp3 = temp3.tqarg(44); + temp3 = temp3.arg(44); } else if (freq / 1000000. > 5190.) { - temp3 = temp3.tqarg(40); + temp3 = temp3.arg(40); } else if (freq / 1000000. > 5170.) { - temp3 = temp3.tqarg(36); + temp3 = temp3.arg(36); } else if (freq / 1000000. > 2474.) { |