diff options
Diffstat (limited to 'karbon/widgets/vstatebutton.h')
-rw-r--r-- | karbon/widgets/vstatebutton.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/karbon/widgets/vstatebutton.h b/karbon/widgets/vstatebutton.h index 6273adcc..08e4a1a2 100644 --- a/karbon/widgets/vstatebutton.h +++ b/karbon/widgets/vstatebutton.h @@ -20,24 +20,24 @@ #ifndef __VSTATEBUTTON_H__ #define __VSTATEBUTTON_H__ -#include <qpushbutton.h> -#include <qpixmap.h> -#include <qptrlist.h> +#include <tqpushbutton.h> +#include <tqpixmap.h> +#include <tqptrlist.h> -class VStateButton : public QPushButton +class VStateButton : public TQPushButton { public: - VStateButton( QWidget* parent = 0L, const char* name = 0L ); + VStateButton( TQWidget* tqparent = 0L, const char* name = 0L ); ~VStateButton(); - void addState( QPixmap *state ) { m_pixmaps.append( state ); } + void addState( TQPixmap *state ) { m_pixmaps.append( state ); } void setState( unsigned int index ); unsigned int getState() const { return m_index; } private: - void mouseReleaseEvent( QMouseEvent * ); + void mouseReleaseEvent( TQMouseEvent * ); - QPtrList<QPixmap> m_pixmaps; + TQPtrList<TQPixmap> m_pixmaps; unsigned int m_index; }; |