diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2010-02-08 17:07:45 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2010-02-08 17:07:45 +0000 |
| commit | f2438206820014534209b99e0f0819010ee44860 (patch) | |
| tree | 3ef1e9ce6730e4ceaf084e954a1c543fc7f9f033 /src/plugins/Input/cdaudio/decodercdaudiofactory.cpp | |
| parent | 301e7bf9fc22bb3fe2e8d33d4d183c80c9f64b28 (diff) | |
| download | qmmp-f2438206820014534209b99e0f0819010ee44860.tar.gz qmmp-f2438206820014534209b99e0f0819010ee44860.tar.bz2 qmmp-f2438206820014534209b99e0f0819010ee44860.zip | |
added cddb support (Closes issue 159)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1553 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/cdaudio/decodercdaudiofactory.cpp')
| -rw-r--r-- | src/plugins/Input/cdaudio/decodercdaudiofactory.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/Input/cdaudio/decodercdaudiofactory.cpp b/src/plugins/Input/cdaudio/decodercdaudiofactory.cpp index ae88ea6e6..4786259c5 100644 --- a/src/plugins/Input/cdaudio/decodercdaudiofactory.cpp +++ b/src/plugins/Input/cdaudio/decodercdaudiofactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Ilya Kotov * + * Copyright (C) 2009-2010 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -21,6 +21,7 @@ #include <QtGui> #include <cdio/version.h> +#include <cddb/version.h> #include "settingsdialog.h" #include "decoder_cdaudio.h" #include "decodercdaudiofactory.h" @@ -86,7 +87,8 @@ void DecoderCDAudioFactory::showAbout(QWidget *parent) { QMessageBox::about (parent, tr("About CD Audio Plugin"), tr("Qmmp CD Audio Plugin")+"\n"+ - tr("Compiled against libcdio version:")+ " "+CDIO_VERSION+"\n"+ + QString(tr("Compiled against libcdio-%1 and libcddb-%2")).arg(CDIO_VERSION) + .arg(CDDB_VERSION) + "\n" + tr("Writen by: Ilya Kotov <forkotov02@hotmail.ru>")+"\n"+ tr("Usage: open cdda:/// using Add URL dialog or command line")); } |
