summaryrefslogtreecommitdiffstats
path: root/kcontrol/kio/kcookiesmain.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kcontrol/kio/kcookiesmain.cpp
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz
tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kcontrol/kio/kcookiesmain.cpp')
-rw-r--r--kcontrol/kio/kcookiesmain.cpp18
1 files changed, 9 insertions, 9 deletions
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 <bastian@kde.org>
// This dialog box created by David Faure <faure@kde.org>
-#include <qlayout.h>
-#include <qtabwidget.h>
+#include <tqlayout.h>
+#include <tqtabwidget.h>
#include <klocale.h>
#include <kapplication.h>
@@ -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("<h1>Cookies</h1> Cookies contain information that Konqueror"
" (or other KDE applications using the HTTP protocol) stores on your"