aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/converter/converter.h
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2016-01-21 07:31:10 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2016-01-21 07:31:10 +0000
commite31a61e0273cc1723295565375e07acde066ad41 (patch)
treec9bd0e2b47cfc55ce3ae3f703f9b6eb64c5cd3a5 /src/plugins/General/converter/converter.h
parent7f5637710f36ecfa818b06fe008d53d1cf234ba8 (diff)
downloadqmmp-e31a61e0273cc1723295565375e07acde066ad41.tar.gz
qmmp-e31a61e0273cc1723295565375e07acde066ad41.tar.bz2
qmmp-e31a61e0273cc1723295565375e07acde066ad41.zip
improved converter
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@6070 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/converter/converter.h')
-rw-r--r--src/plugins/General/converter/converter.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/General/converter/converter.h b/src/plugins/General/converter/converter.h
index 0f619d864..b338f5a60 100644
--- a/src/plugins/General/converter/converter.h
+++ b/src/plugins/General/converter/converter.h
@@ -41,7 +41,7 @@ public:
explicit Converter(QObject *parent = 0);
virtual ~Converter();
- bool prepare(const QString &url, const QVariantMap &preset);
+ bool prepare(const QString &url, int row, const QVariantMap &preset);
public slots:
void stop();
@@ -49,6 +49,7 @@ public slots:
signals:
void progress(int percent);
void finished(Converter *converter);
+ void message(int row, QString message);
private:
void run();
@@ -58,6 +59,7 @@ private:
QVariantMap m_preset;
QMutex m_mutex;
bool m_user_stop;
+ int m_row;
};