diff options
Diffstat (limited to 'kdevdesigner/designer/connectiontable.cpp')
-rw-r--r-- | kdevdesigner/designer/connectiontable.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kdevdesigner/designer/connectiontable.cpp b/kdevdesigner/designer/connectiontable.cpp index 7fed1b07..3cfdb057 100644 --- a/kdevdesigner/designer/connectiontable.cpp +++ b/kdevdesigner/designer/connectiontable.cpp @@ -28,8 +28,8 @@ #include <klocale.h> -ConnectionTable::ConnectionTable( QWidget *parent, const char *name ) - : QTable( 0, 4, parent, name ) +ConnectionTable::ConnectionTable( TQWidget *parent, const char *name ) + : TQTable( 0, 4, parent, name ) { setSorting( TRUE ); setShowGrid( FALSE ); @@ -50,7 +50,7 @@ void ConnectionTable::sortColumn( int col, bool ascending, bool ) horizontalHeader()->setSortIndicator( col, ascending ); if ( isEditing() ) endEdit( currEditRow(), currEditCol(), FALSE, FALSE ); - QTable::sortColumn( col, ascending, TRUE ); + TQTable::sortColumn( col, ascending, TRUE ); setCurrentCell( 0, 0 ); emit resorted(); } |