aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/rgscan/rgscanfactory.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-10-10 07:17:34 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-10-10 07:17:34 +0000
commit19ed899304622860f14e31f45e9cab83963295c7 (patch)
tree9bf1582e18af737e1b3fbf9ebd3d4670239adfda /src/plugins/General/rgscan/rgscanfactory.cpp
parent8f10f5f1023a0fcdbf8370a59d7a797b0b44c8fd (diff)
downloadqmmp-19ed899304622860f14e31f45e9cab83963295c7.tar.gz
qmmp-19ed899304622860f14e31f45e9cab83963295c7.tar.bz2
qmmp-19ed899304622860f14e31f45e9cab83963295c7.zip
rgscan: added description, removed useless code
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3764 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/rgscan/rgscanfactory.cpp')
-rw-r--r--src/plugins/General/rgscan/rgscanfactory.cpp20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/plugins/General/rgscan/rgscanfactory.cpp b/src/plugins/General/rgscan/rgscanfactory.cpp
index 8d1099818..f0d31ab53 100644
--- a/src/plugins/General/rgscan/rgscanfactory.cpp
+++ b/src/plugins/General/rgscan/rgscanfactory.cpp
@@ -25,8 +25,8 @@
const GeneralProperties RGScanFactory::properties() const
{
GeneralProperties properties;
- properties.name = tr("ReplayGain Scaner");
- properties.shortName = "rgscaner";
+ properties.name = tr("ReplayGain Scanner Plugin");
+ properties.shortName = "rgscan";
properties.hasAbout = true;
properties.hasSettings = false;
properties.visibilityControl = false;
@@ -46,11 +46,15 @@ QDialog *RGScanFactory::createConfigDialog(QWidget *parent)
void RGScanFactory::showAbout(QWidget *parent)
{
- /*QMessageBox::about (parent, tr("About Converter Plugin"),
- tr("Qmmp Converter Plugin")+"\n"+
- tr("This plugin converts supported audio files to other file formats "
- "using external command-line encoders") +"\n"+
- tr("Written by: Ilya Kotov <forkotov02@hotmail.ru>"));*/
+ QMessageBox::about (parent, tr("About ReplayGain Scanner Plugin"),
+ tr("ReplayGain Scanner Plugin for Qmmp")+"\n"+
+ tr("This plugin scans audio files and gives information for volume normalization") + "\n" +
+ tr("Written by: Ilya Kotov <forkotov02@hotmail.ru>") + "\n" +
+ tr("Based on source code by:") + "\n" +
+ tr("David Robinson <David@Robinson.org>") + "\n" +
+ tr("Glen Sawyer <mp3gain@hotmail.com>") + "\n" +
+ tr("Frank Klemm"));
+
}
QTranslator *RGScanFactory::createTranslator(QObject *parent)
@@ -61,4 +65,4 @@ QTranslator *RGScanFactory::createTranslator(QObject *parent)
return translator;
}
-Q_EXPORT_PLUGIN2(rgscaner, RGScanFactory)
+Q_EXPORT_PLUGIN2(rgscan, RGScanFactory)