diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-22 23:33:11 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-22 23:33:11 +0900 |
commit | 7665c8d3f798aaf287ff14a35af74d9c303cb20c (patch) | |
tree | 00fd812583eed65f80d269255e8b662c90d1ddc7 /src/kcmkommando.cpp | |
parent | 100a40e71a3f796a93675f9940c42ebe6429740e (diff) | |
download | kommando-7665c8d3f798aaf287ff14a35af74d9c303cb20c.tar.gz kommando-7665c8d3f798aaf287ff14a35af74d9c303cb20c.zip |
Raw Qt->TQt conversion using tde/scripts/conversions/qt3-tqt3/convert_existing_qt3_app_to_tq
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kcmkommando.cpp')
-rw-r--r-- | src/kcmkommando.cpp | 10 |
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."); } |