summaryrefslogtreecommitdiffstats
path: root/part/kxe_viewattributes.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 16:37:54 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-31 22:21:37 +0900
commit9e94ee99cd260efb279f2c810ea2c2cc7839e6ae (patch)
tree7d5a63225f7516ec924502bbbfcabf5d00ebd61f /part/kxe_viewattributes.cpp
parent21ab29e9b899ae5d211ac58ca7fea4e34f46e4b7 (diff)
downloadkxmleditor-9e94ee99.tar.gz
kxmleditor-9e94ee99.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 4d0e92e869aeab286a753010ee87be3bd30cafe4)
Diffstat (limited to 'part/kxe_viewattributes.cpp')
-rw-r--r--part/kxe_viewattributes.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/part/kxe_viewattributes.cpp b/part/kxe_viewattributes.cpp
index 59084cf..e18aa10 100644
--- a/part/kxe_viewattributes.cpp
+++ b/part/kxe_viewattributes.cpp
@@ -34,7 +34,7 @@ KXE_ViewAttributes::KXE_ViewAttributes( TQWidget * pParent, const char * pszName
setColumnReadOnly( 1, true );
setColumnReadOnly( 2, true );
- connect( this, SIGNAL(valueChanged(int,int)), this, SLOT(slotItemRenamedInplace(int,int)) );
+ connect( this, TQ_SIGNAL(valueChanged(int,int)), this, TQ_SLOT(slotItemRenamedInplace(int,int)) );
}
TQDomAttr KXE_ViewAttributes::getSelectedAttribute() const
@@ -56,9 +56,9 @@ void KXE_ViewAttributes::setReadWrite( bool fReadWrite )
setColumnReadOnly( 2, ! fReadWrite );
if ( fReadWrite )
- connect( this, SIGNAL(contextMenuRequested(int,int,const TQPoint&)), this, SLOT(slotContextMenuRequested(int,int,const TQPoint&)) );
+ connect( this, TQ_SIGNAL(contextMenuRequested(int,int,const TQPoint&)), this, TQ_SLOT(slotContextMenuRequested(int,int,const TQPoint&)) );
else
- disconnect( this, SIGNAL(contextMenuRequested(int,int,const TQPoint&)), this, SLOT(slotContextMenuRequested(int,int,const TQPoint&)) );
+ disconnect( this, TQ_SIGNAL(contextMenuRequested(int,int,const TQPoint&)), this, TQ_SLOT(slotContextMenuRequested(int,int,const TQPoint&)) );
}
void KXE_ViewAttributes::slotContextMenuRequested( int nRow, int nCol, const TQPoint & pos )