diff options
Diffstat (limited to 'kcontrol/input/core')
-rw-r--r-- | kcontrol/input/core/themepage.cpp | 10 | ||||
-rw-r--r-- | kcontrol/input/core/themepage.h | 4 |
2 files changed, 5 insertions, 9 deletions
diff --git a/kcontrol/input/core/themepage.cpp b/kcontrol/input/core/themepage.cpp index 24b43d829..38d6432bb 100644 --- a/kcontrol/input/core/themepage.cpp +++ b/kcontrol/input/core/themepage.cpp @@ -20,9 +20,9 @@ */ #include <tdeglobal.h> -#include <kstandarddirs.h> +#include <tdestandarddirs.h> #include <kurl.h> -#include <kprocess.h> +#include <tdeprocess.h> #include <tdeio/job.h> #include <tdeio/netaccess.h> #include <tdemessagebox.h> @@ -66,8 +66,8 @@ ThemePage::ThemePage( TQWidget* parent, const char* name ) listview->addColumn( i18n("Name") ); listview->addColumn( i18n("Description") ); - connect( listview, TQT_SIGNAL(selectionChanged(TQListViewItem*)), - TQT_SLOT(selectionChanged(TQListViewItem*)) ); + connect( listview, TQ_SIGNAL(selectionChanged(TQListViewItem*)), + TQ_SLOT(selectionChanged(TQListViewItem*)) ); insertThemes(); } @@ -208,5 +208,3 @@ void ThemePage::fixCursorFile() p.start(TDEProcess::Block); } } - -// vim: set noet ts=4 sw=4: diff --git a/kcontrol/input/core/themepage.h b/kcontrol/input/core/themepage.h index d1060797a..5442e158c 100644 --- a/kcontrol/input/core/themepage.h +++ b/kcontrol/input/core/themepage.h @@ -26,7 +26,7 @@ class TQListViewItem; class ThemePage : public TQWidget { - Q_OBJECT + TQ_OBJECT public: @@ -54,5 +54,3 @@ class ThemePage : public TQWidget }; #endif // __THEMEPAGE_H - -// vim: set noet ts=4 sw=4: |