diff options
Diffstat (limited to 'tqtinterface/qt4/src/sql/tqdatatable.cpp')
-rw-r--r-- | tqtinterface/qt4/src/sql/tqdatatable.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tqtinterface/qt4/src/sql/tqdatatable.cpp b/tqtinterface/qt4/src/sql/tqdatatable.cpp index 647c3a2..99ef396 100644 --- a/tqtinterface/qt4/src/sql/tqdatatable.cpp +++ b/tqtinterface/qt4/src/sql/tqdatatable.cpp @@ -235,18 +235,18 @@ void qt_debug_buffer( const TQString& msg, TQSqlRecord* cursor ) */ /*! - Constructs a data table which is a child of \a tqparent, called + Constructs a data table which is a child of \a parent, called name \a name. */ -TQDataTable::TQDataTable ( TQWidget * tqparent, const char * name ) - : TQTable( tqparent, name ) +TQDataTable::TQDataTable ( TQWidget * parent, const char * name ) + : TQTable( parent, name ) { init(); } /*! - Constructs a data table which is a child of \a tqparent, called name + Constructs a data table which is a child of \a parent, called name \a name using the cursor \a cursor. If \a autoPopulate is TRUE (the default is FALSE), columns are @@ -259,8 +259,8 @@ TQDataTable::TQDataTable ( TQWidget * tqparent, const char * name ) representing NULL values as strings. */ -TQDataTable::TQDataTable ( TQSqlCursor* cursor, bool autoPopulate, TQWidget * tqparent, const char * name ) - : TQTable( tqparent, name ) +TQDataTable::TQDataTable ( TQSqlCursor* cursor, bool autoPopulate, TQWidget * parent, const char * name ) + : TQTable( parent, name ) { init(); setSqlCursor( cursor, autoPopulate ); |