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-28 16:44:53 +0900
commit4d0e92e869aeab286a753010ee87be3bd30cafe4 (patch)
tree7d5a63225f7516ec924502bbbfcabf5d00ebd61f /part/kxe_viewattributes.cpp
parent80d4c1120d98af73d048b059d4464fcecc71c07b (diff)
downloadkxmleditor-4d0e92e869aeab286a753010ee87be3bd30cafe4.tar.gz
kxmleditor-4d0e92e869aeab286a753010ee87be3bd30cafe4.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 )