summaryrefslogtreecommitdiffstats
path: root/src/optionseditor.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:07:11 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:07:11 -0600
commit2ca843787e76f51e8c5f232518e349cfae572661 (patch)
treed8a8627213fe70f7651e9123c03bc7418c1c8b67 /src/optionseditor.cpp
parent6afce6c4bc7ea82d8644358216a72a585bffaf0a (diff)
downloadsoundkonverter-2ca843787e76f51e8c5f232518e349cfae572661.tar.gz
soundkonverter-2ca843787e76f51e8c5f232518e349cfae572661.zip
Rename obsolete tq methods to standard names
Diffstat (limited to 'src/optionseditor.cpp')
-rwxr-xr-xsrc/optionseditor.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/optionseditor.cpp b/src/optionseditor.cpp
index 2b18cbe..d6e6f41 100755
--- a/src/optionseditor.cpp
+++ b/src/optionseditor.cpp
@@ -81,7 +81,7 @@ OptionsEditor::OptionsEditor( TagEngine* _tagEngine, Config* _config, FileList*
TQGridLayout* tagsGridLayout = new TQGridLayout( tags, 1, 1, 0, 6, "tagsGridLayout" );
// add the inputs
- // add a horizontal box tqlayout for the title and track number
+ // add a horizontal box layout for the title and track number
TQHBoxLayout *titleBox = new TQHBoxLayout( -1, "titleBox" );
tagsGridLayout->addLayout( titleBox, 0, 1 );
// and fill it up
@@ -116,7 +116,7 @@ OptionsEditor::OptionsEditor( TagEngine* _tagEngine, Config* _config, FileList*
this, TQT_SLOT(editNumberClicked())
);
- // add a horizontal box tqlayout for the artist and the composer
+ // add a horizontal box layout for the artist and the composer
TQHBoxLayout *artistBox = new TQHBoxLayout( -1, "artistBox" );
tagsGridLayout->addLayout( artistBox, 1, 1 );
// and fill it up
@@ -151,7 +151,7 @@ OptionsEditor::OptionsEditor( TagEngine* _tagEngine, Config* _config, FileList*
this, TQT_SLOT(editComposerClicked())
);
- // add a horizontal box tqlayout for the album
+ // add a horizontal box layout for the album
TQHBoxLayout *albumBox = new TQHBoxLayout( -1, "albumBox" );
tagsGridLayout->addLayout( albumBox, 2, 1 );
// and fill it up
@@ -171,7 +171,7 @@ OptionsEditor::OptionsEditor( TagEngine* _tagEngine, Config* _config, FileList*
this, TQT_SLOT(editAlbumClicked())
);
- // add a horizontal box tqlayout for the disc number, year and genre
+ // add a horizontal box layout for the disc number, year and genre
TQHBoxLayout *albumdataBox = new TQHBoxLayout( -1, "albumdataBox" );
tagsGridLayout->addLayout( albumdataBox, 3, 1 );
// and fill it up
@@ -228,7 +228,7 @@ OptionsEditor::OptionsEditor( TagEngine* _tagEngine, Config* _config, FileList*
this, TQT_SLOT(editGenreClicked())
);
- // add a horizontal box tqlayout for the comment
+ // add a horizontal box layout for the comment
TQHBoxLayout *commentBox = new TQHBoxLayout( -1, "commentBox" );
tagsGridLayout->addLayout( commentBox, 4, 1 );
// and fill it up