From fb401a891f1b426e9419c0cb16403df407138611 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 27 Dec 2023 19:25:43 +0900 Subject: Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT Signed-off-by: Michele Calgaro --- plugins/src/inputmethods/imsw-multi/qmultiinputcontext.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'plugins/src/inputmethods/imsw-multi') 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; } -- cgit v1.2.1