diff options
Diffstat (limited to 'src/ui_netparamswizard.cpp')
-rw-r--r-- | src/ui_netparamswizard.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/ui_netparamswizard.cpp b/src/ui_netparamswizard.cpp index 9945eea..a2b46ce 100644 --- a/src/ui_netparamswizard.cpp +++ b/src/ui_netparamswizard.cpp @@ -22,16 +22,16 @@ #include "ui_netparamswizard.h" #include "netparams.h" -#include <qpushbutton.h> -#include <qradiobutton.h> -#include <qlineedit.h> -#include <qcheckbox.h> -#include <qlabel.h> +#include <tqpushbutton.h> +#include <tqradiobutton.h> +#include <tqlineedit.h> +#include <tqcheckbox.h> +#include <tqlabel.h> #include <kiconloader.h> -ui_NetParamsWizard::ui_NetParamsWizard(QWidget* parent, const char* name, bool modal, WFlags fl) - : NetParamsWizard(parent,name, modal,fl) +ui_NetParamsWizard::ui_NetParamsWizard(TQWidget* tqparent, const char* name, bool modal, WFlags fl) + : NetParamsWizard(tqparent,name, modal,fl) { backButton()->setIconSet( SmallIconSet("back") ); nextButton()->setIconSet( SmallIconSet("forward") ); @@ -52,10 +52,10 @@ void ui_NetParamsWizard::setWepEnabled( bool w ) setAppropriate( page(4), w ); } -void ui_NetParamsWizard::setWpaEnabled( bool w, QStringList settings ) +void ui_NetParamsWizard::setWpaEnabled( bool w, TQStringList settings ) { setAppropriate( page(5), w ); - if (w) labelWpaSettings->setText( QString("<i>%1</i>").arg( settings.join("<br>") ) ); + if (w) labelWpaSettings->setText( TQString("<i>%1</i>").tqarg( settings.join("<br>") ) ); } @@ -68,7 +68,7 @@ void ui_NetParamsWizard::next() { if (indexOf(currentPage())==2) setAppropriate( page(3), radioManualConfig->isChecked() ); - QWizard::next(); + TQWizard::next(); } WANetParams ui_NetParamsWizard::readNetParams( WANetParams & np ) @@ -79,7 +79,7 @@ WANetParams ui_NetParamsWizard::readNetParams( WANetParams & np ) if (!np.dhcp) { // manual configuration option selected np.ip = ip->text(); np.broadcast = broadcast->text(); - np.netmask = netmask->text(); + np.nettqmask = nettqmask->text(); np.gateway = gateway->text(); np.domain = domain->text(); np.dns1 = dns1->text(); |