diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-27 19:25:43 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-27 19:25:43 +0900 |
commit | fb401a891f1b426e9419c0cb16403df407138611 (patch) | |
tree | 045b51949b3140039e37d898d8b0513016a86bea /plugins | |
parent | a9d178f1000475ba1727ffe123a2c54585488c01 (diff) | |
download | tqt3-fb401a891f1b426e9419c0cb16403df407138611.tar.gz tqt3-fb401a891f1b426e9419c0cb16403df407138611.zip |
Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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; } |