diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:04:07 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:04:07 -0600 |
commit | 516c39eb4872b2e0dee0baefe675abdf171e847c (patch) | |
tree | 8c41ba125c677e1503831236d9bf12b727bf94f6 /k9author/import.cpp | |
parent | 1e42ec29323d1016df59b8b571d16fefe3d4e6f1 (diff) | |
download | k9copy-516c39eb4872b2e0dee0baefe675abdf171e847c.tar.gz k9copy-516c39eb4872b2e0dee0baefe675abdf171e847c.zip |
Rename obsolete tq methods to standard names
Diffstat (limited to 'k9author/import.cpp')
-rw-r--r-- | k9author/import.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/k9author/import.cpp b/k9author/import.cpp index cd87208..3c80ec6 100644 --- a/k9author/import.cpp +++ b/k9author/import.cpp @@ -39,7 +39,7 @@ import::import( TQWidget* parent, const char* name, WFlags fl ) importLayout->addWidget( textLabel1, 0, 0 ); - tqlayout2 = new TQGridLayout( 0, 1, 1, 0, 6, "tqlayout2"); + layout2 = new TQGridLayout( 0, 1, 1, 0, 6, "layout2"); lvDVD = new TQListView( this, "lvDVD" ); lvDVD->addColumn( tr2i18n( "Video files" ) ); @@ -51,9 +51,9 @@ import::import( TQWidget* parent, const char* name, WFlags fl ) lvDVD->setRootIsDecorated( FALSE ); lvDVD->setResizeMode( TQListView::AllColumns ); - tqlayout2->addMultiCellWidget( lvDVD, 0, 1, 0, 0 ); + layout2->addMultiCellWidget( lvDVD, 0, 1, 0, 0 ); - importLayout->addMultiCellLayout( tqlayout2, 1, 1, 0, 3 ); + importLayout->addMultiCellLayout( layout2, 1, 1, 0, 3 ); cbOutputDev = new KComboBox( FALSE, this, "cbOutputDev" ); |