summaryrefslogtreecommitdiffstats
path: root/libk9copy/dvdprogress.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:04:07 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:04:07 -0600
commit516c39eb4872b2e0dee0baefe675abdf171e847c (patch)
tree8c41ba125c677e1503831236d9bf12b727bf94f6 /libk9copy/dvdprogress.cpp
parent1e42ec29323d1016df59b8b571d16fefe3d4e6f1 (diff)
downloadk9copy-516c39eb4872b2e0dee0baefe675abdf171e847c.tar.gz
k9copy-516c39eb4872b2e0dee0baefe675abdf171e847c.zip
Rename obsolete tq methods to standard names
Diffstat (limited to 'libk9copy/dvdprogress.cpp')
-rw-r--r--libk9copy/dvdprogress.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/libk9copy/dvdprogress.cpp b/libk9copy/dvdprogress.cpp
index ff914dc..f211fe3 100644
--- a/libk9copy/dvdprogress.cpp
+++ b/libk9copy/dvdprogress.cpp
@@ -35,25 +35,25 @@ DVDProgress::DVDProgress( TQWidget* parent, const char* name, bool modal, WFlags
setCursor( TQCursor( 3 ) );
DVDProgressLayout = new TQGridLayout( this, 1, 1, 11, 6, "DVDProgressLayout");
- tqlayout2 = new TQVBoxLayout( 0, 0, 6, "tqlayout2");
+ layout2 = new TQVBoxLayout( 0, 0, 6, "layout2");
lblTotal = new TQLabel( this, "lblTotal" );
lblTotal->setCursor( TQCursor( 3 ) );
- tqlayout2->addWidget( lblTotal );
+ layout2->addWidget( lblTotal );
pbTotal = new TQProgressBar( this, "pbTotal" );
pbTotal->setCursor( TQCursor( 3 ) );
pbTotal->setProgress( 100 );
pbTotal->setPercentageVisible( FALSE );
- tqlayout2->addWidget( pbTotal );
+ layout2->addWidget( pbTotal );
- DVDProgressLayout->addLayout( tqlayout2, 1, 0 );
+ DVDProgressLayout->addLayout( layout2, 1, 0 );
- tqlayout1 = new TQVBoxLayout( 0, 0, 6, "tqlayout1");
+ layout1 = new TQVBoxLayout( 0, 0, 6, "layout1");
lblTitle = new TQLabel( this, "lblTitle" );
lblTitle->setCursor( TQCursor( 3 ) );
- tqlayout1->addWidget( lblTitle );
+ layout1->addWidget( lblTitle );
pbTitle = new TQProgressBar( this, "pbTitle" );
pbTitle->setCursor( TQCursor( 3 ) );
@@ -61,9 +61,9 @@ DVDProgress::DVDProgress( TQWidget* parent, const char* name, bool modal, WFlags
pbTitle->setProgress( 100 );
pbTitle->setCenterIndicator( TRUE );
pbTitle->setPercentageVisible( FALSE );
- tqlayout1->addWidget( pbTitle );
+ layout1->addWidget( pbTitle );
- DVDProgressLayout->addLayout( tqlayout1, 0, 0 );
+ DVDProgressLayout->addLayout( layout1, 0, 0 );
lblStatus = new TQLabel( this, "lblStatus" );
lblStatus->setCursor( TQCursor( 3 ) );