diff options
Diffstat (limited to 'kpf/src/ServerWizard.cpp')
-rw-r--r-- | kpf/src/ServerWizard.cpp | 80 |
1 files changed, 40 insertions, 40 deletions
diff --git a/kpf/src/ServerWizard.cpp b/kpf/src/ServerWizard.cpp index 840c64d9..214b6003 100644 --- a/kpf/src/ServerWizard.cpp +++ b/kpf/src/ServerWizard.cpp @@ -46,10 +46,10 @@ namespace KPF { - ServerWizard::ServerWizard(TQWidget * parent) - : KWizard(parent, "KPF::ServerWizard", true) + ServerWizard::ServerWizard(TQWidget * tqparent) + : KWizard(tqparent, "KPF::ServerWizard", true) { - setCaption(i18n("New Server - %1").arg("kpf")); + setCaption(i18n("New Server - %1").tqarg("kpf")); page1_ = new TQWidget(this); page2_ = new TQWidget(this); @@ -58,7 +58,7 @@ namespace KPF page5_ = new TQWidget(this); TQLabel * l_rootDirectoryHelp = - new QLabel + new TQLabel ( i18n ( @@ -75,7 +75,7 @@ namespace KPF ); TQLabel * l_listenPortHelp = - new QLabel + new TQLabel ( i18n ( @@ -88,7 +88,7 @@ namespace KPF ); TQLabel * l_bandwidthLimitHelp = - new QLabel + new TQLabel ( i18n ( @@ -105,7 +105,7 @@ namespace KPF ); /* TQLabel * l_connectionLimitHelp = - new QLabel + new TQLabel ( i18n ( @@ -119,7 +119,7 @@ namespace KPF */ bool canPublish = DNSSD::ServiceBrowser::isAvailable() == DNSSD::ServiceBrowser::Working; TQLabel * l_serverNameHelp = - new QLabel + new TQLabel ( KPF::HelpText::getServerNameHelp(), page5_ @@ -171,59 +171,59 @@ namespace KPF sb_bandwidthLimit_ ->setSuffix(i18n(" kB/s")); // sb_connectionLimit_ ->setValue(Config::DefaultConnectionLimit); - TQVBoxLayout * layout1 = + TQVBoxLayout * tqlayout1 = new TQVBoxLayout(page1_, KDialog::marginHint(), KDialog::spacingHint()); - TQVBoxLayout * layout2 = + TQVBoxLayout * tqlayout2 = new TQVBoxLayout(page2_, KDialog::marginHint(), KDialog::spacingHint()); - TQVBoxLayout * layout3 = + TQVBoxLayout * tqlayout3 = new TQVBoxLayout(page3_, KDialog::marginHint(), KDialog::spacingHint()); -// TQVBoxLayout * layout4 = +// TQVBoxLayout * tqlayout4 = // new TQVBoxLayout(page4_, KDialog::marginHint(), KDialog::spacingHint()); - TQVBoxLayout * layout5 = + TQVBoxLayout * tqlayout5 = new TQVBoxLayout(page5_, KDialog::marginHint(), KDialog::spacingHint()); - layout1->addWidget(l_rootDirectoryHelp); - layout2->addWidget(l_listenPortHelp); - layout3->addWidget(l_bandwidthLimitHelp); -// layout4->addWidget(l_connectionLimitHelp); - layout5->addWidget(l_serverNameHelp); + tqlayout1->addWidget(l_rootDirectoryHelp); + tqlayout2->addWidget(l_listenPortHelp); + tqlayout3->addWidget(l_bandwidthLimitHelp); +// tqlayout4->addWidget(l_connectionLimitHelp); + tqlayout5->addWidget(l_serverNameHelp); - TQHBoxLayout * layout10 = new TQHBoxLayout(layout1); + TQHBoxLayout * tqlayout10 = new TQHBoxLayout(tqlayout1); - layout10->addWidget(l_root_); - layout10->addWidget(kur_root_); + tqlayout10->addWidget(l_root_); + tqlayout10->addWidget(kur_root_); - layout1->addStretch(1); + tqlayout1->addStretch(1); - TQHBoxLayout * layout20 = new TQHBoxLayout(layout2); + TQHBoxLayout * tqlayout20 = new TQHBoxLayout(tqlayout2); - layout20->addWidget(l_listenPort_); - layout20->addWidget(sb_listenPort_); + tqlayout20->addWidget(l_listenPort_); + tqlayout20->addWidget(sb_listenPort_); - layout2->addStretch(1); + tqlayout2->addStretch(1); - TQHBoxLayout * layout30 = new TQHBoxLayout(layout3); + TQHBoxLayout * tqlayout30 = new TQHBoxLayout(tqlayout3); - layout30->addWidget(l_bandwidthLimit_); - layout30->addWidget(sb_bandwidthLimit_); + tqlayout30->addWidget(l_bandwidthLimit_); + tqlayout30->addWidget(sb_bandwidthLimit_); - layout3->addStretch(1); + tqlayout3->addStretch(1); -// TQHBoxLayout * layout40 = new TQHBoxLayout(layout4); +// TQHBoxLayout * tqlayout40 = new TQHBoxLayout(tqlayout4); -// layout40->addWidget(l_connectionLimit_); -// layout40->addWidget(sb_connectionLimit_); +// tqlayout40->addWidget(l_connectionLimit_); +// tqlayout40->addWidget(sb_connectionLimit_); -// layout4->addStretch(1); +// tqlayout4->addStretch(1); - TQHBoxLayout * layout50 = new TQHBoxLayout(layout5); + TQHBoxLayout * tqlayout50 = new TQHBoxLayout(tqlayout5); - layout50->addWidget(l_serverName_); - layout50->addWidget(le_serverName_); + tqlayout50->addWidget(l_serverName_); + tqlayout50->addWidget(le_serverName_); addPage(page1_, i18n("Root Directory")); addPage(page2_, i18n("Listen Port")); @@ -286,7 +286,7 @@ namespace KPF kur_root_->setURL(location); } - QString + TQString ServerWizard::root() const { return kur_root_->url(); @@ -303,7 +303,7 @@ namespace KPF { return sb_bandwidthLimit_->value(); } - QString + TQString ServerWizard::serverName() const { @@ -396,7 +396,7 @@ namespace KPF return; } - fileDialog->setCaption(i18n("Choose Directory to Share - %1").arg("kpf")); + fileDialog->setCaption(i18n("Choose Directory to Share - %1").tqarg("kpf")); } void |