diff options
Diffstat (limited to 'src/plugins/Effect/ladspa')
| -rw-r--r-- | src/plugins/Effect/ladspa/effectladspafactory.cpp | 6 | ||||
| -rw-r--r-- | src/plugins/Effect/ladspa/effectladspafactory.h | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/plugins/Effect/ladspa/effectladspafactory.cpp b/src/plugins/Effect/ladspa/effectladspafactory.cpp index 0ee9a9e42..b0b73fd7d 100644 --- a/src/plugins/Effect/ladspa/effectladspafactory.cpp +++ b/src/plugins/Effect/ladspa/effectladspafactory.cpp @@ -29,7 +29,6 @@ const EffectProperties EffectLADSPAFactory::properties() const EffectProperties properties; properties.name = tr("LADSPA Plugin"); properties.shortName = "ladspa"; - properties.translation = QLatin1String(":/ladspa_plugin_"); properties.hasSettings = true; properties.hasAbout = true; return properties; @@ -56,3 +55,8 @@ void EffectLADSPAFactory::showAbout(QWidget *parent) tr("Nick Lamb <njl195@zepler.org.uk>")+"\n"+ tr("Giacomo Lozito <city_hunter@users.sf.net>")); } + +QString EffectLADSPAFactory::translation() const +{ + return QLatin1String(":/ladspa_plugin_"); +} diff --git a/src/plugins/Effect/ladspa/effectladspafactory.h b/src/plugins/Effect/ladspa/effectladspafactory.h index afa2b5b04..62e8b589c 100644 --- a/src/plugins/Effect/ladspa/effectladspafactory.h +++ b/src/plugins/Effect/ladspa/effectladspafactory.h @@ -38,6 +38,7 @@ public: Effect *create(); void showSettings(QWidget *parent); void showAbout(QWidget *parent); + QString translation() const; }; |
