diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-08-17 20:03:11 +0200 |
---|---|---|
committer | gregory guy <gregory-tde@laposte.net> | 2020-08-17 20:03:11 +0200 |
commit | 503fddb48f2229ecc6ed6930a99c4d740ff979e5 (patch) | |
tree | 81206d9572927fd636b43a00005808cec6c0ce3e /kpacman/kpacmanview.h | |
parent | e0031ac458d4f414ae583a709d48c4cb0f14b09e (diff) | |
download | tdepacman-503fddb48f2229ecc6ed6930a99c4d740ff979e5.tar.gz tdepacman-503fddb48f2229ecc6ed6930a99c4d740ff979e5.zip |
Second step, convert to tqt3 libraries.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'kpacman/kpacmanview.h')
-rw-r--r-- | kpacman/kpacmanview.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kpacman/kpacmanview.h b/kpacman/kpacmanview.h index e7025e1..9108bc9 100644 --- a/kpacman/kpacmanview.h +++ b/kpacman/kpacmanview.h @@ -22,9 +22,9 @@ #include <config.h> #endif -//include files for Qt -#include <qwidget.h> -#include <qregexp.h> +//include files for TQt +#include <ntqwidget.h> +#include <ntqregexp.h> // application specific includes #include "score.h" @@ -33,14 +33,14 @@ #include "painter.h" /** The KpacmanView class provides the view widget for the KpacmanApp instance. - * The View instance inherits QWidget as a base class and represents the view object of a KTMainWindow. + * The View instance inherits TQWidget as a base class and represents the view object of a KTMainWindow. */ -class KpacmanView : public QWidget +class KpacmanView : public TQWidget { Q_OBJECT public: /** Constructor for the main view */ - KpacmanView ( QWidget *parent = 0, const char *name = 0); + KpacmanView ( TQWidget *parent = 0, const char *name = 0); /** Destructor for the main view */ virtual ~KpacmanView(); @@ -52,14 +52,14 @@ public: protected: void confScheme(); void confMisc(bool defGroup=TRUE); - void resizeEvent( QResizeEvent * ); + void resizeEvent( TQResizeEvent * ); private: Bitfont *bitfont; uchar bitfontFirstChar; uchar bitfontLastChar; - QString fontName; + TQString fontName; int scheme; int mode; |