aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Effect/stereo/effectstereofactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Effect/stereo/effectstereofactory.cpp')
-rw-r--r--src/plugins/Effect/stereo/effectstereofactory.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/Effect/stereo/effectstereofactory.cpp b/src/plugins/Effect/stereo/effectstereofactory.cpp
index 105f23139..5e75b080e 100644
--- a/src/plugins/Effect/stereo/effectstereofactory.cpp
+++ b/src/plugins/Effect/stereo/effectstereofactory.cpp
@@ -29,7 +29,6 @@ const EffectProperties EffectStereoFactory::properties() const
EffectProperties properties;
properties.name = tr("Extra Stereo Plugin");
properties.shortName = "stereo";
- properties.translation = QLatin1String(":/stereo_plugin_");
properties.hasSettings = true;
properties.hasAbout = true;
return properties;
@@ -53,3 +52,8 @@ void EffectStereoFactory::showAbout(QWidget *parent)
tr("Written by: Ilya Kotov <forkotov02@ya.ru>")+"\n"+
tr("Based on the Extra Stereo Plugin for Xmms by Johan Levin"));
}
+
+QString EffectStereoFactory::translation() const
+{
+ return QLatin1String(":/stereo_plugin_");
+}