diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
commit | 41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch) | |
tree | 6d4d5407c000add30aa78630e009c0e5d633e440 /plugins/src/inputmethods/simple | |
parent | 1740cd279522c060e738bbbffacab83355d2b794 (diff) | |
download | tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip |
Automated conversion from qt3
Diffstat (limited to 'plugins/src/inputmethods/simple')
-rw-r--r-- | plugins/src/inputmethods/simple/qsimpleinputcontext.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/src/inputmethods/simple/qsimpleinputcontext.cpp b/plugins/src/inputmethods/simple/qsimpleinputcontext.cpp index b0cb94c11..e9b42c9ba 100644 --- a/plugins/src/inputmethods/simple/qsimpleinputcontext.cpp +++ b/plugins/src/inputmethods/simple/qsimpleinputcontext.cpp @@ -141,7 +141,7 @@ bool TQSimpleInputContext::filterEvent( const TQEvent *event ) // only one character. See description of // TQInputContext::filterEvent() about key compression. val = text[0].unicode(); - // qDebug( "str = %s", (const char*)keyevent->text().local8Bit() ); + // tqDebug( "str = %s", (const char*)keyevent->text().local8Bit() ); } // Store value @@ -165,13 +165,13 @@ bool TQSimpleInputContext::filterEvent( const TQEvent *event ) void TQSimpleInputContext::setFocus() { - //qDebug( "TQSimpleInputContext: %p->setFocus(), focusWidget()=%p", + //tqDebug( "TQSimpleInputContext: %p->setFocus(), focusWidget()=%p", //this, focusWidget() ); } void TQSimpleInputContext::unsetFocus() { - //qDebug( "TQSimpleInputContext: %p->unsetFocus(), focusWidget()=%p", + //tqDebug( "TQSimpleInputContext: %p->unsetFocus(), focusWidget()=%p", //this, focusWidget() ); reset(); } @@ -189,7 +189,7 @@ void TQSimpleInputContext::mouseHandler( int x, TQEvent::Type type, case TQEvent::MouseButtonRelease: case TQEvent::MouseButtonDblClick: case TQEvent::MouseMove: - // qDebug( "TQSimpleInputContext::mouseHandler: " + // tqDebug( "TQSimpleInputContext::mouseHandler: " // "x=%d, type=%d, button=%d, state=%d", x, type, button, state ); break; default: @@ -241,7 +241,7 @@ bool TQSimpleInputContext::checkComposeTable( uint* composeBuffer, const TQCompo // no entries were found if ( p == composeTable->data + composeTable->size ) { - // qDebug( "no match" ); + // tqDebug( "no match" ); clearComposeBuffer(); return FALSE; } @@ -251,18 +251,18 @@ bool TQSimpleInputContext::checkComposeTable( uint* composeBuffer, const TQCompo // check if partial match if ( composeBuffer[i] == 0 && p->keys[i] ) { - // qDebug("partial match"); + // tqDebug("partial match"); return TRUE; } if ( composeBuffer[i] != p->keys[i] ) { - // qDebug("different entry"); + // tqDebug("different entry"); clearComposeBuffer(); return i!=0; } } - // qDebug("match exactly"); + // tqDebug("match exactly"); // match exactly commitChar( p->value ); |