summaryrefslogtreecommitdiffstats
path: root/src/kcmkommando.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kcmkommando.cpp')
-rw-r--r--src/kcmkommando.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kcmkommando.cpp b/src/kcmkommando.cpp
index e3ef742..5007360 100644
--- a/src/kcmkommando.cpp
+++ b/src/kcmkommando.cpp
@@ -19,7 +19,7 @@
***************************************************************************/
-#include <qlayout.h>
+#include <ntqlayout.h>
#include <klocale.h>
#include <kglobal.h>
@@ -35,10 +35,10 @@ static const char description[] =
static const char version[] = "0.5.2";
-typedef KGenericFactory<KCMKommando, QWidget> kommandoFactory;
+typedef KGenericFactory<KCMKommando, TQWidget> kommandoFactory;
K_EXPORT_COMPONENT_FACTORY( kcm_kommando, kommandoFactory("kcmkommando"))
-KCMKommando::KCMKommando(QWidget *parent, const char *name, const QStringList&)
+KCMKommando::KCMKommando(TQWidget *parent, const char *name, const TQStringList&)
: KCModule(parent, name), about(0), configDialog(0)
{
about = new KAboutData("kommando", I18N_NOOP("Kommando"), version, description,
@@ -47,7 +47,7 @@ KCMKommando::KCMKommando(QWidget *parent, const char *name, const QStringList&)
about->addAuthor( "Sergio Cambra", 0, "runico@users.berlios.de" );
setAboutData(about);
- QVBoxLayout* layout = new QVBoxLayout( this );
+ TQVBoxLayout* layout = new TQVBoxLayout( this );
layout->setAutoAdd( true );
configDialog = new ConfigDialogImpl(this);
connect(configDialog, SIGNAL(changed(bool)), this, SLOT(configChanged(bool)));
@@ -89,7 +89,7 @@ int KCMKommando::buttons()
}
-QString KCMKommando::quickHelp() const
+TQString KCMKommando::quickHelp() const
{
return i18n("Helpful information about the prueba module.");
}