summaryrefslogtreecommitdiffstats
path: root/kwordquiz/src/dlgspecchar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kwordquiz/src/dlgspecchar.cpp')
-rw-r--r--kwordquiz/src/dlgspecchar.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kwordquiz/src/dlgspecchar.cpp b/kwordquiz/src/dlgspecchar.cpp
index e44cb403..af521fd1 100644
--- a/kwordquiz/src/dlgspecchar.cpp
+++ b/kwordquiz/src/dlgspecchar.cpp
@@ -16,7 +16,7 @@
#include "dlgspecchar.h"
-#include <layout.h>
+#include <tqlayout.h>
#include <klocale.h>
#include <kcharselect.h>
@@ -38,11 +38,11 @@ void DlgSpecChar::initDialog(const TQChar &_chr, const TQString &_font, bool /*_
grid = new TQGridLayout( page, 1, 1, KDialog::marginHint(), KDialog::spacingHint() );
- int t = (_chr.unicode()/256);
+ int t = (_chr.tqunicode()/256);
charSelect = new KCharSelect( page, "", _font, _chr, t);
connect(charSelect, TQT_SIGNAL(doubleClicked()),this, TQT_SLOT(slotDoubleClicked()));
- charSelect->resize( charSelect->sizeHint() );
+ charSelect->resize( charSelect->tqsizeHint() );
charSelect->enableFontCombo( false );
grid->addWidget( charSelect, 0, 0 );