summaryrefslogtreecommitdiffstats
path: root/part/kxe_viewattributes.cpp
diff options
context:
space:
mode:
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 )