diff options
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" ); |