summaryrefslogtreecommitdiffstats
path: root/kwordquiz/src/dlgspecchar.h
diff options
context:
space:
mode:
Diffstat (limited to 'kwordquiz/src/dlgspecchar.h')
-rw-r--r--kwordquiz/src/dlgspecchar.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kwordquiz/src/dlgspecchar.h b/kwordquiz/src/dlgspecchar.h
index f2a18c8d..daf91d97 100644
--- a/kwordquiz/src/dlgspecchar.h
+++ b/kwordquiz/src/dlgspecchar.h
@@ -33,17 +33,17 @@ class DlgSpecChar : public KDialogBase
Q_OBJECT
public:
//constructor when you want to insert multi char
- DlgSpecChar( QWidget *parent, const char *name, const QString &_font,
- const QChar &_chr, bool _modal=true );
+ DlgSpecChar( TQWidget *parent, const char *name, const TQString &_font,
+ const TQChar &_chr, bool _modal=true );
~DlgSpecChar();
// internal
- QChar chr();
+ TQChar chr();
void closeDialog();
private:
- void initDialog(const QChar &_chr, const QString &_font, bool _enableFont);
+ void initDialog(const TQChar &_chr, const TQString &_font, bool _enableFont);
private slots:
void slotUser1();
@@ -51,13 +51,13 @@ private slots:
protected:
// dialog objects
- QGridLayout *grid;
+ TQGridLayout *grid;
KButtonBox *bbox;
- QPushButton *bOk, *bCancel;
+ TQPushButton *bOk, *bCancel;
KCharSelect *charSelect;
signals:
- void insertChar(QChar);
+ void insertChar(TQChar);
};
#endif