diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:41:19 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:41:19 -0600 |
commit | 06c2dd77f692b319d32a4abfe71566885196ee2a (patch) | |
tree | c3415a1dcc32e9c66e2789a57c7acff0e48f4a58 /src/netparams.h | |
parent | 896459f74f89281a69958d130ccc490a369d33ce (diff) | |
download | wlassistant-06c2dd77f692b319d32a4abfe71566885196ee2a.tar.gz wlassistant-06c2dd77f692b319d32a4abfe71566885196ee2a.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/netparams.h')
-rw-r--r-- | src/netparams.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netparams.h b/src/netparams.h index fbc2b7b..966dd08 100644 --- a/src/netparams.h +++ b/src/netparams.h @@ -79,7 +79,7 @@ public: r = true; } if ( (hiddenEssid) && (!wasHiddenEssid) ) - if ( KMessageBox::questionYesNo(0, i18n("<qt><p>The network has stopped broadcasting its ESSID since the last time you were connected.</p><p>Would you like to use '<b>%1</b>' as an ESSID for this network?</p><p><i>NOTE: If you answer No, a dialog will appear where you will be able to specify a different ESSID.</i></p></qt>").tqarg(essid) ) != 3 ) // !=YES + if ( KMessageBox::questionYesNo(0, i18n("<qt><p>The network has stopped broadcasting its ESSID since the last time you were connected.</p><p>Would you like to use '<b>%1</b>' as an ESSID for this network?</p><p><i>NOTE: If you answer No, a dialog will appear where you will be able to specify a different ESSID.</i></p></qt>").arg(essid) ) != 3 ) // !=YES r = true; wasHiddenEssid = hiddenEssid; |