summaryrefslogtreecommitdiffstats
path: root/kioslave/audiocd/kcmaudiocd
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:57:28 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-03 18:07:30 +0200
commit537ccfa7e6fcdcb613f2f83744b19fc28f83b79f (patch)
treeaa9967241dd9bab89be10bb1102f89903c87d2a4 /kioslave/audiocd/kcmaudiocd
parentcc17a105bc9cf5683ff3f208214068c571fcde59 (diff)
downloadtdemultimedia-537ccfa7e6fcdcb613f2f83744b19fc28f83b79f.tar.gz
tdemultimedia-537ccfa7e6fcdcb613f2f83744b19fc28f83b79f.zip
Remove additional unneeded tq method conversions
(cherry picked from commit dc07846059a60d069687585cc72ff501a2096296)
Diffstat (limited to 'kioslave/audiocd/kcmaudiocd')
-rw-r--r--kioslave/audiocd/kcmaudiocd/audiocdconfig.ui6
-rw-r--r--kioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/kioslave/audiocd/kcmaudiocd/audiocdconfig.ui b/kioslave/audiocd/kcmaudiocd/audiocdconfig.ui
index 505f6616..10595a89 100644
--- a/kioslave/audiocd/kcmaudiocd/audiocdconfig.ui
+++ b/kioslave/audiocd/kcmaudiocd/audiocdconfig.ui
@@ -116,7 +116,7 @@
<property name="text">
<string>Lowest</string>
</property>
- <property name="tqalignment">
+ <property name="alignment">
<set>AlignVCenter|AlignRight</set>
</property>
</widget>
@@ -127,7 +127,7 @@
<property name="text">
<string>Normal</string>
</property>
- <property name="tqalignment">
+ <property name="alignment">
<set>AlignCenter</set>
</property>
</widget>
@@ -372,7 +372,7 @@
<string>Regular expression used on all file names. For example using selection " " and replace with "_" would replace all the spaces with underlines.
</string>
</property>
- <property name="tqalignment">
+ <property name="alignment">
<set>WordBreak|AlignVCenter</set>
</property>
</widget>
diff --git a/kioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp b/kioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp
index 1e1868fb..87614806 100644
--- a/kioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp
+++ b/kioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp
@@ -51,7 +51,7 @@ KAudiocdModule::KAudiocdModule(TQWidget *parent, const char *name)
KConfigSkeleton *config = NULL;
TQWidget *widget = encoder->getConfigureWidget(&config);
if(widget && config){
- tabWidget->addTab(widget, i18n("%1 Encoder").tqarg(encoder->type()));
+ tabWidget->addTab(widget, i18n("%1 Encoder").arg(encoder->type()));
KConfigDialogManager *configManager = new KConfigDialogManager(widget, config, TQString(encoder->type()+" EncoderConfigManager").latin1());
encoderSettings.append(configManager);
}