summaryrefslogtreecommitdiffstats
path: root/tools/linguist/linguist/msgedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/linguist/linguist/msgedit.cpp')
-rw-r--r--tools/linguist/linguist/msgedit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/linguist/linguist/msgedit.cpp b/tools/linguist/linguist/msgedit.cpp
index 86c3b55d..5148f5b8 100644
--- a/tools/linguist/linguist/msgedit.cpp
+++ b/tools/linguist/linguist/msgedit.cpp
@@ -552,7 +552,7 @@ bool MessageEditor::eventFilter( TQObject *o, TQEvent *e )
TQKeyEvent * ke = (TQKeyEvent*)e;
const int k = ke->key();
- if ( ::qt_cast<TQTextEdit*>(o) ) {
+ if ( ::tqt_cast<TQTextEdit*>(o) ) {
if ( e->type() == TQEvent::KeyPress ) {
// Hardcode the Tab key to do focus changes when pressed
// inside the editor
@@ -588,7 +588,7 @@ bool MessageEditor::eventFilter( TQObject *o, TQEvent *e )
break;
}
}
- } else if ( ::qt_cast<TQListView*>(o) ) {
+ } else if ( ::tqt_cast<TQListView*>(o) ) {
// handle the ESC key in the list views
if ( e->type() == TQEvent::KeyRelease && k == Key_Escape )
editorPage->translationMed->setFocus();