diff options
Diffstat (limited to 'kpacman/kpacman.h')
-rw-r--r-- | kpacman/kpacman.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kpacman/kpacman.h b/kpacman/kpacman.h index 527d344..04210af 100644 --- a/kpacman/kpacman.h +++ b/kpacman/kpacman.h @@ -23,10 +23,10 @@ #include <config.h> #endif -// include files for Qt -#include <qlist.h> -#include <qfileinf.h> -#include <qregexp.h> +// include files for TQt +#include <ntqlist.h> +#include <ntqfileinf.h> +#include <ntqregexp.h> //include files for KDE #include <kapp.h> @@ -58,7 +58,7 @@ class KpacmanApp : public KMainWindow public: /** constructor of KpacmanApp, calls all init functions to create the application. */ - KpacmanApp(QWidget *parent = 0, const char *name = 0); + KpacmanApp(TQWidget *parent = 0, const char *name = 0); virtual ~KpacmanApp(); protected: @@ -134,7 +134,7 @@ class KpacmanApp : public KMainWindow /** changes the statusbar contents for the standard label permanently, used to indicate current actions. * @param text the text that is displayed in the statusbar */ - void slotStatusMsg(const QString &text); + void slotStatusMsg(const TQString &text); /** configure keysbindings dialog */ void slotKeyBindings(); @@ -170,13 +170,13 @@ class KpacmanApp : public KMainWindow int mode; KPopupMenu *modesPopup; // KAction main scheme selection menu - QList<KPopupMenu> *schemesPopup; // submenus for selecting scheme + TQList<KPopupMenu> *schemesPopup; // submenus for selecting scheme // ID's of the menuitem(s) for finding/selecting scheme by id - QArray<int> modeID; - QArray<int> schemeID; + TQArray<int> modeID; + TQArray<int> schemeID; - QArray<int> schemeMode; // mode(group) of the schemes, -1 if no group + TQArray<int> schemeMode; // mode(group) of the schemes, -1 if no group bool highscoresChecked; // highscores display active bool focusedPause; // Pause caused by focusEvents |