From c663b6440964f6ac48027143ac9e63298991f9d0 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:33:34 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kcontrol/kio/kcookiesmain.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'kcontrol/kio/kcookiesmain.cpp') diff --git a/kcontrol/kio/kcookiesmain.cpp b/kcontrol/kio/kcookiesmain.cpp index f25a28011..8233f0d20 100644 --- a/kcontrol/kio/kcookiesmain.cpp +++ b/kcontrol/kio/kcookiesmain.cpp @@ -3,8 +3,8 @@ // First version of cookies configuration by Waldo Bastian // This dialog box created by David Faure -#include -#include +#include +#include #include #include @@ -16,14 +16,14 @@ #include "kcookiespolicies.h" #include "kcookiesmanagement.h" -KCookiesMain::KCookiesMain(QWidget *parent) +KCookiesMain::KCookiesMain(TQWidget *parent) : KCModule(parent, "kcmkio") { management = 0; bool managerOK = true; DCOPReply reply = DCOPRef( "kded", "kded" ).call( "loadModule", - QCString( "kcookiejar" ) ); + TQCString( "kcookiejar" ) ); if( !reply.isValid() ) { @@ -34,19 +34,19 @@ KCookiesMain::KCookiesMain(QWidget *parent) "are stored on your computer.")); } - QVBoxLayout *layout = new QVBoxLayout(this); - tab = new QTabWidget(this); + TQVBoxLayout *layout = new TQVBoxLayout(this); + tab = new TQTabWidget(this); layout->addWidget(tab); policies = new KCookiesPolicies(this); tab->addTab(policies, i18n("&Policy")); - connect(policies, SIGNAL(changed(bool)), SIGNAL(changed(bool))); + connect(policies, TQT_SIGNAL(changed(bool)), TQT_SIGNAL(changed(bool))); if( managerOK ) { management = new KCookiesManagement(this); tab->addTab(management, i18n("&Management")); - connect(management, SIGNAL(changed(bool)), SIGNAL(changed(bool))); + connect(management, TQT_SIGNAL(changed(bool)), TQT_SIGNAL(changed(bool))); } } @@ -78,7 +78,7 @@ void KCookiesMain::defaults() management->defaults(); } -QString KCookiesMain::quickHelp() const +TQString KCookiesMain::quickHelp() const { return i18n("

Cookies

Cookies contain information that Konqueror" " (or other KDE applications using the HTTP protocol) stores on your" -- cgit v1.2.1