diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:41:19 -0600 | 
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-27 04:12:43 +0200 | 
| commit | f586d1dbd5bca4f4c499d2562d7f9cc00285e08f (patch) | |
| tree | 64d07987ce4501837ecdb697e337163e19587846 /src/wlassistant.cpp | |
| parent | 86f58f6a29b7352da65d1bd8670eed533a0f6856 (diff) | |
| download | wlassistant-f586d1dbd5bca4f4c499d2562d7f9cc00285e08f.tar.gz wlassistant-f586d1dbd5bca4f4c499d2562d7f9cc00285e08f.zip | |
Remove additional unneeded tq method conversions
(cherry picked from commit 06c2dd77f692b319d32a4abfe71566885196ee2a)
Diffstat (limited to 'src/wlassistant.cpp')
| -rw-r--r-- | src/wlassistant.cpp | 52 | 
1 files changed, 26 insertions, 26 deletions
| diff --git a/src/wlassistant.cpp b/src/wlassistant.cpp index ef59019..5677de9 100644 --- a/src/wlassistant.cpp +++ b/src/wlassistant.cpp @@ -101,7 +101,7 @@ WirelessAssistant::~WirelessAssistant()  void WirelessAssistant::init()  {          statusLabel->setText(i18n("Initializing...")); -        statusLabel->tqrepaint(); +        statusLabel->repaint();          ////////////////////////////////////////          ///// CHECK FOR SYSFS (KERNEL 2.6) ///// @@ -197,7 +197,7 @@ void WirelessAssistant::init()          ///// DETECT & SET PATHS /////          if (!Commands.allFound) {	//all ok or ONLY dhcpcd not found (i.e. dhclient present).                  std::cout << "Missing executables (" << Commands.notFound.join("', '").ascii() << "). Exiting." << std::endl; -                KMessageBox::error(0, i18n("Executable(s) '%1' could not be found.\nWireless Assistant will now quit.").tqarg(Commands.notFound.join("', '")) ); +                KMessageBox::error(0, i18n("Executable(s) '%1' could not be found.\nWireless Assistant will now quit.").arg(Commands.notFound.join("', '")) );                  close();                  return;          } @@ -235,7 +235,7 @@ void WirelessAssistant::checkConnectionStatus()  	} else if (connectedItem) { //connection LOST  		setConnectedItem(0);  		timerConnectionCheck->stop(); -		if ( autoReconnect || KMessageBox::questionYesNo(0, i18n("Connection to '%1' has been lost!\nWould you like to reconnect?").tqarg(NetParams.essid), i18n("Connection Lost") , KStdGuiItem::yes(), KStdGuiItem::no() ) == KMessageBox::Yes ) { +		if ( autoReconnect || KMessageBox::questionYesNo(0, i18n("Connection to '%1' has been lost!\nWould you like to reconnect?").arg(NetParams.essid), i18n("Connection Lost") , KStdGuiItem::yes(), KStdGuiItem::no() ) == KMessageBox::Yes ) {                                          netDisconnect( true );                                          netConnect();  		} @@ -249,7 +249,7 @@ void WirelessAssistant::removeNetParams()          TQString ap = nvi->ap(); TQString essid = nvi->essid();          for (TQStringList::Iterator nps = NetParamsList.begin(); nps != NetParamsList.end(); nps++) {                  if ( (*nps).section(",",2,2)==ap && (*nps).section(",",1,1)==essid) { -                        if ( KMessageBox::warningContinueCancel(0, i18n("<qt><p>Settings for network '<b>%1</b>' are about to be deleted.</p><p>Would you like to continue?</p></qt>").tqarg(essid)) == KMessageBox::Continue ) { +                        if ( KMessageBox::warningContinueCancel(0, i18n("<qt><p>Settings for network '<b>%1</b>' are about to be deleted.</p><p>Would you like to continue?</p></qt>").arg(essid)) == KMessageBox::Continue ) {                                  if (nvi->hidden())	// hiddenEssid = 1                                          nvi->setEssid("<hidden>");                                  NetParamsList.remove(nps); @@ -282,7 +282,7 @@ void WirelessAssistant::setDNS( const WANetParams & np )                  f.close();          } else {                  std::cout << "dns setup error: " << f.name().ascii() << " is not writeable." << std::endl; -                KMessageBox::error(0, i18n("<qt><p>File '<i>%1</i>' could not be opened for writing.</p><p>Nameserver(s) and/or domain are not set.</p></qt>").tqarg(f.name()) ); +                KMessageBox::error(0, i18n("<qt><p>File '<i>%1</i>' could not be opened for writing.</p><p>Nameserver(s) and/or domain are not set.</p></qt>").arg(f.name()) );          }  } @@ -314,19 +314,19 @@ void WirelessAssistant::netScan( const WANetParams & np )          }          if ( !WATools::isUp(np.iface.ascii()) ) { -                statusLabel->setText(i18n("Bringing interface %1 up...").tqarg(np.iface.ascii())); +                statusLabel->setText(i18n("Bringing interface %1 up...").arg(np.iface.ascii()));                  //runCommand( Commands.cmd("ifup",np) );  		WATools::setUp(true, np.iface.ascii());  		if (DelayBeforeScanning>0) {          		statusLabel->setText(i18n("Waiting before scanning...")); -        		statusLabel->tqrepaint(); +        		statusLabel->repaint();  			KApplication::eventLoop()->processEvents( TQEventLoop::ExcludeUserInput );  			usleep(DelayBeforeScanning * 1000000); // delay * 1000ms  		}          }          statusLabel->setText(i18n("Scanning...")); -        statusLabel->tqrepaint(); +        statusLabel->repaint();          netList->clear(); @@ -570,7 +570,7 @@ void WirelessAssistant::netConnect()  	setNetParamsFromList( netList->selectedItem() );  	//can't connect if WPA needed, and wpa_supplicant and wpa_cli not available  	if ( NetParams.wpa && !wpaAvailable ) { -		KMessageBox::error(0, i18n("<qt><p><b>Can not connect to network '%1'.<b></p><p>The network you are trying to connect to requires WPA authentication. The necessary executables <i>wpa_supplicant</i> and <i>wpa_cli</i> could not be found. Install <i>wpa_supplicant</i> and restart Wireless Assistant to connect.</p></qt>").tqarg(NetParams.essid) ); +		KMessageBox::error(0, i18n("<qt><p><b>Can not connect to network '%1'.<b></p><p>The network you are trying to connect to requires WPA authentication. The necessary executables <i>wpa_supplicant</i> and <i>wpa_cli</i> could not be found. Install <i>wpa_supplicant</i> and restart Wireless Assistant to connect.</p></qt>").arg(NetParams.essid) );  		timerConnectionCheck->start(WA_CONNECTION_CHECK_INTERVAL); //resume connection checking  		return;  	} @@ -579,7 +579,7 @@ void WirelessAssistant::netConnect()          if ( (NetParams.essid=="<hidden>") || (!setNetParamsFromConfig( search )) ) {                  ui_NetParamsWizard *netwiz = new ui_NetParamsWizard;                  if (!NetParams.hiddenEssid) -                        netwiz->setCaption( i18n("%1 - First Connection Wizard").tqarg(NetParams.essid) ); +                        netwiz->setCaption( i18n("%1 - First Connection Wizard").arg(NetParams.essid) );                  netwiz->setEssidEnabled( NetParams.hiddenEssid );                  netwiz->setWepEnabled( NetParams.wep );  		netwiz->setWpaEnabled( NetParams.wpa, NetParams.wpaSettings ); @@ -650,8 +650,8 @@ void WirelessAssistant::netConnect( const WANetParams & np )  		std::cout << "No pre-connection command specified." << std::endl; -        statusLabel->setText( i18n("Connecting to '%1'...").tqarg(np.essid) ); -        statusLabel->tqrepaint(); +        statusLabel->setText( i18n("Connecting to '%1'...").arg(np.essid) ); +        statusLabel->repaint();  	if (!WATools::isUp(np.iface.ascii()) ) WATools::setUp( true, np.iface.ascii() );          //runCommand( Commands.cmd("ifup", np) );          if ( runCommand( Commands.cmd("iwconfig_set", np) ).find("8B04") > -1 ) { // error 8B04 - Request 'Set Frequency' not supported. @@ -710,7 +710,7 @@ void WirelessAssistant::netConnect( const WANetParams & np )                  if (autoQuit)                          this->close();                  groupAPs ? setConnectedItem( np.essid ) : setConnectedItem( np.ap ); -                statusLabel->setText( i18n("Successfully connected to '%1'.").tqarg(np.essid) ); +                statusLabel->setText( i18n("Successfully connected to '%1'.").arg(np.essid) );                  setUi(1);          } else {  		std::cout << "CONNECTION FAILED." << std::endl; @@ -757,7 +757,7 @@ void WirelessAssistant::setConnectedItem( const TQString & netid )  void WirelessAssistant::netDisconnect( const bool & quiet )  { -        if ( (quiet) || (KMessageBox::warningContinueCancel(0, i18n("<qt><p>You are about to disconnect from '<b>%1</b>'.</p><p>Would you like to continue?<p></qt>").tqarg(connectedItem->essid()) )== KMessageBox::Continue ) ) { +        if ( (quiet) || (KMessageBox::warningContinueCancel(0, i18n("<qt><p>You are about to disconnect from '<b>%1</b>'.</p><p>Would you like to continue?<p></qt>").arg(connectedItem->essid()) )== KMessageBox::Continue ) ) {                  timerConnectionCheck->stop(); //stop while disconnecting.  		if ( !NetParams.preDisconnectionCommand.isEmpty() ) { @@ -769,13 +769,13 @@ void WirelessAssistant::netDisconnect( const bool & quiet )  		statusLabel->setText( i18n("Disconnecting...") ); -                statusLabel->tqrepaint(); +                statusLabel->repaint();                  setConnectedItem( 0 );                  if ( NetParams.dhcp ) {  			if ( dhcpClientRunning() ) {                          	runCommand( Commands.cmd( "kill_dhcp", NetParams ) );                          	statusLabel->setText( i18n("Waiting for DHCP client to shut down...") ); -                        	statusLabel->tqrepaint(); +                        	statusLabel->repaint();                          	TQTimer* tmr = new TQTimer();                          	tmr->start(1500, true);	//wait 1.5sec for dhcp client to really shutdown, single shot.                          	while ( tmr->isActive() ) { @@ -960,7 +960,7 @@ TQString WirelessAssistant::runCommand( const TQStringList & cmd, int timeout, b                          TQToolTip::remove                                  (buttonClose);                          TQToolTip::add -                                ( buttonClose, i18n("Terminate current process\n(%1)").tqarg( p->arguments().join(" ") ) ); +                                ( buttonClose, i18n("Terminate current process\n(%1)").arg( p->arguments().join(" ") ) );                  }                  i++;          } @@ -1059,7 +1059,7 @@ void WirelessAssistant::editNetParams()          ui_NetParamsEdit *netedit = new ui_NetParamsEdit();          netedit->setValues( NetParams ); -        netedit->setCaption( i18n("%1 Settings").tqarg(NetParams.essid) ); +        netedit->setCaption( i18n("%1 Settings").arg(NetParams.essid) );          netedit->exec();          if (netedit->result() == TQDialog::Rejected) {                  delete netedit; @@ -1085,7 +1085,7 @@ bool WirelessAssistant::dhcpClientRunning()          TQString pidFile;          pidPaths << "/etc/" << "/etc/dhcpc/" << "/var/run/";          if ( Commands.dhcpClient=="dhcpcd" ) -                pidFile = TQString("dhcpcd-%1.pid").tqarg(NetParams.iface.ascii()); +                pidFile = TQString("dhcpcd-%1.pid").arg(NetParams.iface.ascii());          else                  pidFile = TQString("dhclient.pid"); @@ -1185,14 +1185,14 @@ bool WirelessAssistant::generateWpaConfigFile( const TQString& essid, const TQSt  bool WirelessAssistant::setWpaClientEnabled( bool e, const TQString& iface, TQString driver )  {  	if (!e) { -		if ( runCommand( TQStringList(Commands.wpa_cli) << TQString("-i%1").tqarg(NetParams.iface) << "terminate" ).contains("OK") ) { +		if ( runCommand( TQStringList(Commands.wpa_cli) << TQString("-i%1").arg(NetParams.iface) << "terminate" ).contains("OK") ) {  			TQFile( wpaConfigFile ).remove();  			return 1;  		} else  			return 0; // wpa client was not running.  	} -	if ( !runCommand( TQStringList(Commands.wpa_cli) << TQString("-i%1").tqarg(NetParams.iface) << "status" ).contains("Failed to connect") ) { +	if ( !runCommand( TQStringList(Commands.wpa_cli) << TQString("-i%1").arg(NetParams.iface) << "status" ).contains("Failed to connect") ) {  		std::cout << "WPA client already running. Reconfiguring..." << std::endl;  		runCommand( TQStringList(Commands.wpa_cli) << "reconfigure" );  	} else { @@ -1215,9 +1215,9 @@ bool WirelessAssistant::setWpaClientEnabled( bool e, const TQString& iface, TQSt  		wp->clearArguments();  		wp->addArgument( Commands.wpa_supplicant );  		wp->addArgument( "-W" ); //wait for control interface -		wp->addArgument( TQString("-D%1").tqarg(driver) ); -		wp->addArgument( TQString("-i%1").tqarg(iface) ); -		wp->addArgument( TQString("-c%1").tqarg(wpaConfigFile) ); +		wp->addArgument( TQString("-D%1").arg(driver) ); +		wp->addArgument( TQString("-i%1").arg(iface) ); +		wp->addArgument( TQString("-c%1").arg(wpaConfigFile) );  		//std::cout << "Starting WPA client: " << wp->arguments().join(" ").ascii() << std::endl;  		if ( !wp->start() ) {  			std::cout << "Failed to start WPA client." << std::endl; @@ -1231,14 +1231,14 @@ bool WirelessAssistant::setWpaClientEnabled( bool e, const TQString& iface, TQSt  	TQString o;  	int i = 0; -	while ( !(o =runCommand( TQStringList(Commands.wpa_cli) << TQString("-i%1").tqarg(NetParams.iface) << "status" )).contains("Failed to connect") ) { +	while ( !(o =runCommand( TQStringList(Commands.wpa_cli) << TQString("-i%1").arg(NetParams.iface) << "status" )).contains("Failed to connect") ) {  		for (int c = 0; c < 15; c++) {  			usleep(75*1000); //75msec  			KApplication::eventLoop()->processEvents( TQEventLoop::AllEvents );  			i++;  		}  		if (i>400) { //more than 30sec have passed -			runCommand( TQStringList(Commands.wpa_cli) << TQString("-i%1").tqarg(NetParams.iface) << "terminate" ); +			runCommand( TQStringList(Commands.wpa_cli) << TQString("-i%1").arg(NetParams.iface) << "terminate" );  			return 0;  		}  		if ( o.contains("wpa_state=COMPLETED") ) { | 
