mirror of
https://github.com/clementine-player/Clementine
synced 2025-01-31 19:45:31 +01:00
Minor correction in tagfetcher. Thanks David
This commit is contained in:
parent
03c2da63e0
commit
6c42240b02
@ -39,13 +39,13 @@ TagFetcher::TagFetcher(QObject *parent)
|
|||||||
#ifdef Q_OS_DARWIN
|
#ifdef Q_OS_DARWIN
|
||||||
QCoreApplication::applicationDirPath() + "/../PlugIns/tunepimp";
|
QCoreApplication::applicationDirPath() + "/../PlugIns/tunepimp";
|
||||||
#else
|
#else
|
||||||
NULL;
|
QString();
|
||||||
#endif
|
#endif
|
||||||
pimp_ = tp_NewWithArgs(
|
pimp_ = tp_NewWithArgs(
|
||||||
QCoreApplication::applicationName().toAscii().constData(),
|
QCoreApplication::applicationName().toAscii().constData(),
|
||||||
CLEMENTINE_VERSION,
|
CLEMENTINE_VERSION,
|
||||||
TP_THREAD_ALL,
|
TP_THREAD_ALL,
|
||||||
plugin_path==NULL? NULL:plugin_path.toLocal8Bit().constData());
|
plugin_path.isNull()? NULL:plugin_path.toLocal8Bit().constData());
|
||||||
|
|
||||||
tp_SetDebug(pimp_, true);
|
tp_SetDebug(pimp_, true);
|
||||||
tp_SetAutoSaveThreshold(pimp_, -1);
|
tp_SetAutoSaveThreshold(pimp_, -1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user