diff options
author | Timothy Pearson <[email protected]> | 2012-03-06 20:38:40 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-06 20:38:40 -0600 |
commit | eb1d1e0dec5720ace27395e290b7093cd68b150d (patch) | |
tree | 04a199ef5ea853d86a6f9a44716c0874d41c20f6 /tools/linguist | |
parent | ae8aba1e0f17943046e6bfa889b169f7fc41da0d (diff) | |
download | tqt3-eb1d1e0dec5720ace27395e290b7093cd68b150d.tar.gz tqt3-eb1d1e0dec5720ace27395e290b7093cd68b150d.zip |
Automated update from qt3
Diffstat (limited to 'tools/linguist')
-rw-r--r-- | tools/linguist/linguist/msgedit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/linguist/linguist/msgedit.cpp b/tools/linguist/linguist/msgedit.cpp index 86c3b55d4..5148f5b89 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(); |