diff options
Diffstat (limited to 'languages/cpp/app_templates/kconfig35')
-rw-r--r-- | languages/cpp/app_templates/kconfig35/app.cpp | 24 | ||||
-rw-r--r-- | languages/cpp/app_templates/kconfig35/app.h | 4 | ||||
-rw-r--r-- | languages/cpp/app_templates/kconfig35/appview.cpp | 6 | ||||
-rw-r--r-- | languages/cpp/app_templates/kconfig35/appview.h | 8 |
4 files changed, 21 insertions, 21 deletions
diff --git a/languages/cpp/app_templates/kconfig35/app.cpp b/languages/cpp/app_templates/kconfig35/app.cpp index e32e28b5..e18b4148 100644 --- a/languages/cpp/app_templates/kconfig35/app.cpp +++ b/languages/cpp/app_templates/kconfig35/app.cpp @@ -4,7 +4,7 @@ #include "settings.h" #include "prefs.h" -#include <qdragobject.h> +#include <tqdragobject.h> #include <kaction.h> #include <kconfigdialog.h> @@ -34,10 +34,10 @@ setAutoSaveSettings(); // allow the view to change the statusbar and caption - connect(m_view, SIGNAL(signalChangeStatusbar(const QString&)), - this, SLOT(changeStatusbar(const QString&))); - connect(m_view, SIGNAL(signalChangeCaption(const QString&)), - this, SLOT(changeCaption(const QString&))); + connect(m_view, TQT_SIGNAL(signalChangeStatusbar(const TQString&)), + this, TQT_SLOT(changeStatusbar(const TQString&))); + connect(m_view, TQT_SIGNAL(signalChangeCaption(const TQString&)), + this, TQT_SLOT(changeCaption(const TQString&))); } @@ -47,14 +47,14 @@ void %{APPNAMELC}::setupActions() { - KStdAction::openNew(this, SLOT(fileNew()), actionCollection()); - KStdAction::quit(kapp, SLOT(quit()), actionCollection()); + KStdAction::openNew(this, TQT_SLOT(fileNew()), actionCollection()); + KStdAction::quit(kapp, TQT_SLOT(quit()), actionCollection()); - KStdAction::preferences(this, SLOT(optionsPreferences()), actionCollection()); + KStdAction::preferences(this, TQT_SLOT(optionsPreferences()), actionCollection()); // custom menu and menu item KAction *custom = new KAction(i18n("Swi&tch Colors"), 0, - m_view, SLOT(switchColors()), + m_view, TQT_SLOT(switchColors()), actionCollection(), "switch_action"); setupGUI(); @@ -75,17 +75,17 @@ void %{APPNAMELC}::optionsPreferences() // to the names of the variables in the .kcfg file KConfigDialog *dialog = new KConfigDialog(this, "settings", Settings::self(), KDialogBase::Swallow); dialog->addPage(new Prefs(), i18n("General"), "package_settings"); - connect(dialog, SIGNAL(settingsChanged()), m_view, SLOT(settingsChanged())); + connect(dialog, TQT_SIGNAL(settingsChanged()), m_view, TQT_SLOT(settingsChanged())); dialog->show(); } -void %{APPNAMELC}::changeCaption(const QString& text) +void %{APPNAMELC}::changeCaption(const TQString& text) { // display the text on the caption setCaption(text); } -void %{APPNAMELC}::changeStatusbar(const QString& text) +void %{APPNAMELC}::changeStatusbar(const TQString& text) { // display the text on the statusbar statusBar()->message(text); diff --git a/languages/cpp/app_templates/kconfig35/app.h b/languages/cpp/app_templates/kconfig35/app.h index abfd6c09..0174aa1b 100644 --- a/languages/cpp/app_templates/kconfig35/app.h +++ b/languages/cpp/app_templates/kconfig35/app.h @@ -43,8 +43,8 @@ private slots: void optionsPreferences(); void newToolbarConfig(); - void changeStatusbar(const QString& text); - void changeCaption(const QString& text); + void changeStatusbar(const TQString& text); + void changeCaption(const TQString& text); private: diff --git a/languages/cpp/app_templates/kconfig35/appview.cpp b/languages/cpp/app_templates/kconfig35/appview.cpp index 35e23682..30d627fe 100644 --- a/languages/cpp/app_templates/kconfig35/appview.cpp +++ b/languages/cpp/app_templates/kconfig35/appview.cpp @@ -4,9 +4,9 @@ #include "settings.h" #include <klocale.h> -#include <qlabel.h> +#include <tqlabel.h> -%{APPNAMELC}View::%{APPNAMELC}View(QWidget *parent) +%{APPNAMELC}View::%{APPNAMELC}View(TQWidget *parent) : %{APPNAMELC}view_base(parent) { settingsChanged(); @@ -20,7 +20,7 @@ void %{APPNAMELC}View::switchColors() { // switch the foreground/background colors of the label - QColor color = Settings::col_background(); + TQColor color = Settings::col_background(); Settings::setCol_background( Settings::col_foreground() ); Settings::setCol_foreground( color ); diff --git a/languages/cpp/app_templates/kconfig35/appview.h b/languages/cpp/app_templates/kconfig35/appview.h index 45a10de7..5b69ae24 100644 --- a/languages/cpp/app_templates/kconfig35/appview.h +++ b/languages/cpp/app_templates/kconfig35/appview.h @@ -3,7 +3,7 @@ #ifndef _%{APPNAMEUC}VIEW_H_ #define _%{APPNAMEUC}VIEW_H_ -#include <qwidget.h> +#include <tqwidget.h> #include "%{APPNAMELC}view_base.h" @@ -26,7 +26,7 @@ public: /** * Default constructor */ - %{APPNAMELC}View(QWidget *parent); + %{APPNAMELC}View(TQWidget *parent); /** * Destructor @@ -37,12 +37,12 @@ signals: /** * Use this signal to change the content of the statusbar */ - void signalChangeStatusbar(const QString& text); + void signalChangeStatusbar(const TQString& text); /** * Use this signal to change the content of the caption */ - void signalChangeCaption(const QString& text); + void signalChangeCaption(const TQString& text); private slots: void switchColors(); |