diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/src/inputmethods/imsw-multi/qmultiinputcontext.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/src/inputmethods/imsw-multi/qmultiinputcontext.cpp b/plugins/src/inputmethods/imsw-multi/qmultiinputcontext.cpp index 2d971691e..4ff19772f 100644 --- a/plugins/src/inputmethods/imsw-multi/qmultiinputcontext.cpp +++ b/plugins/src/inputmethods/imsw-multi/qmultiinputcontext.cpp @@ -290,14 +290,14 @@ void TQMultiInputContext::changeInputMethod( TQString key ) const char *method; if ( beIndirectlyConnected ) { - method = SLOT(imEventReceived(TQObject *,TQIMEvent *)); + method = TQ_SLOT(imEventReceived(TQObject *,TQIMEvent *)); } else { - method = SIGNAL(imEventGenerated(TQObject *,TQIMEvent *)); + method = TQ_SIGNAL(imEventGenerated(TQObject *,TQIMEvent *)); } - connect( _slave, SIGNAL(imEventGenerated(TQObject *,TQIMEvent *)), + connect( _slave, TQ_SIGNAL(imEventGenerated(TQObject *,TQIMEvent *)), this, method ); - connect( _slave, SIGNAL(deletionRequested()), - this, SLOT(destroyInputContext()) ); + connect( _slave, TQ_SIGNAL(deletionRequested()), + this, TQ_SLOT(destroyInputContext()) ); if ( cachedFocus ) { _slave->setFocus(); @@ -364,8 +364,8 @@ TQPopupMenu *TQMultiInputContext::createImSelPopup() } } - TQObject::connect( popup, SIGNAL(activated(int)), - this, SLOT(changeInputMethodWithMenuId(int)) ); + TQObject::connect( popup, TQ_SIGNAL(activated(int)), + this, TQ_SLOT(changeInputMethodWithMenuId(int)) ); return popup; } |