diff options
Diffstat (limited to 'src/plugins/General/rgscan/rgscanfactory.cpp')
| -rw-r--r-- | src/plugins/General/rgscan/rgscanfactory.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/plugins/General/rgscan/rgscanfactory.cpp b/src/plugins/General/rgscan/rgscanfactory.cpp index fe89a62c1..9e68e89a9 100644 --- a/src/plugins/General/rgscan/rgscanfactory.cpp +++ b/src/plugins/General/rgscan/rgscanfactory.cpp @@ -22,12 +22,11 @@ #include "rgscanhelper.h" #include "rgscanfactory.h" -const GeneralProperties RGScanFactory::properties() const +GeneralProperties RGScanFactory::properties() const { GeneralProperties properties; properties.name = tr("ReplayGain Scanner Plugin"); properties.shortName = "rgscan"; - properties.translation = QLatin1String(":/rgscan_plugin_"); properties.hasAbout = true; properties.hasSettings = false; properties.visibilityControl = false; @@ -57,3 +56,8 @@ void RGScanFactory::showAbout(QWidget *parent) tr("Frank Klemm")); } + +QString RGScanFactory::translation() const +{ + return QLatin1String(":/rgscan_plugin_"); +} |
