aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/qmmp/abstractengine.cpp2
-rw-r--r--src/qmmp/decoder.cpp2
-rw-r--r--src/qmmp/effect.cpp2
-rw-r--r--src/qmmp/inputsource.cpp2
-rw-r--r--src/qmmp/output.cpp2
-rw-r--r--src/qmmp/visual.cpp2
-rw-r--r--src/qmmpui/commandlinemanager.cpp2
-rw-r--r--src/qmmpui/filedialog.cpp2
-rw-r--r--src/qmmpui/general.cpp2
-rw-r--r--src/qmmpui/playlistparser.cpp2
-rw-r--r--src/qmmpui/uiloader.cpp2
11 files changed, 11 insertions, 11 deletions
diff --git a/src/qmmp/abstractengine.cpp b/src/qmmp/abstractengine.cpp
index e055aa105..a2f437c7a 100644
--- a/src/qmmp/abstractengine.cpp
+++ b/src/qmmp/abstractengine.cpp
@@ -59,7 +59,7 @@ void AbstractEngine::checkFactories()
QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
QObject *plugin = loader.instance();
if (loader.isLoaded())
- qDebug("AbstractEngine: plugin loaded - %s", qPrintable(fileName));
+ qDebug("AbstractEngine: loaded plugin %s", qPrintable(fileName));
else
qWarning("AbstractEngine: %s", qPrintable(loader.errorString ()));
EngineFactory *factory = 0;
diff --git a/src/qmmp/decoder.cpp b/src/qmmp/decoder.cpp
index 9b69bd401..4839672c0 100644
--- a/src/qmmp/decoder.cpp
+++ b/src/qmmp/decoder.cpp
@@ -114,7 +114,7 @@ void Decoder::checkFactories()
QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
QObject *plugin = loader.instance();
if (loader.isLoaded())
- qDebug("Decoder: plugin loaded - %s", qPrintable(fileName));
+ qDebug("Decoder: loaded plugin %s", qPrintable(fileName));
else
qWarning("Decoder: %s", qPrintable(loader.errorString ()));
DecoderFactory *factory = 0;
diff --git a/src/qmmp/effect.cpp b/src/qmmp/effect.cpp
index c314110f3..780e32ccf 100644
--- a/src/qmmp/effect.cpp
+++ b/src/qmmp/effect.cpp
@@ -95,7 +95,7 @@ void Effect::checkFactories()
QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
QObject *plugin = loader.instance();
if (loader.isLoaded())
- qDebug("Effect: plugin loaded - %s", qPrintable(fileName));
+ qDebug("Effect: loaded plugin %s", qPrintable(fileName));
else
qWarning("Effect: %s", qPrintable(loader.errorString ()));
diff --git a/src/qmmp/inputsource.cpp b/src/qmmp/inputsource.cpp
index 374703fad..74745ca7f 100644
--- a/src/qmmp/inputsource.cpp
+++ b/src/qmmp/inputsource.cpp
@@ -159,7 +159,7 @@ void InputSource::checkFactories()
QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
QObject *plugin = loader.instance();
if (loader.isLoaded())
- qDebug("InputSource: plugin loaded - %s", qPrintable(fileName));
+ qDebug("InputSource: loaded plugin %s", qPrintable(fileName));
else
qWarning("InputSource: %s", qPrintable(loader.errorString ()));
InputSourceFactory *factory = 0;
diff --git a/src/qmmp/output.cpp b/src/qmmp/output.cpp
index c7b1cdd32..80074e4f3 100644
--- a/src/qmmp/output.cpp
+++ b/src/qmmp/output.cpp
@@ -415,7 +415,7 @@ void Output::checkFactories()
QPluginLoader loader ( pluginsDir.absoluteFilePath ( fileName ) );
QObject *plugin = loader.instance();
if ( loader.isLoaded() )
- qDebug ( "Output: plugin loaded - %s", qPrintable ( fileName ) );
+ qDebug ( "Output: loaded plugin %s", qPrintable ( fileName ) );
else
qWarning("Output: %s", qPrintable(loader.errorString ()));
diff --git a/src/qmmp/visual.cpp b/src/qmmp/visual.cpp
index bdc153a25..d1da7425d 100644
--- a/src/qmmp/visual.cpp
+++ b/src/qmmp/visual.cpp
@@ -209,7 +209,7 @@ void Visual::checkFactories()
QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
QObject *plugin = loader.instance();
if (loader.isLoaded())
- qDebug("Visual: plugin loaded - %s", qPrintable(fileName));
+ qDebug("Visual: loaded plugin %s", qPrintable(fileName));
else
qWarning("Visual: %s", qPrintable(loader.errorString ()));
diff --git a/src/qmmpui/commandlinemanager.cpp b/src/qmmpui/commandlinemanager.cpp
index c33984f1f..f5706dc2e 100644
--- a/src/qmmpui/commandlinemanager.cpp
+++ b/src/qmmpui/commandlinemanager.cpp
@@ -49,7 +49,7 @@ void CommandLineManager::checkOptions()
QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
QObject *plugin = loader.instance();
if (loader.isLoaded())
- /*qDebug("CommandLineManager: plugin loaded - %s", qPrintable(fileName))*/;
+ /*qDebug("CommandLineManager: loaded plugin %s", qPrintable(fileName))*/;
else
qWarning("CommandLineManager: %s", qPrintable(loader.errorString ()));
diff --git a/src/qmmpui/filedialog.cpp b/src/qmmpui/filedialog.cpp
index d684b6990..9408ab881 100644
--- a/src/qmmpui/filedialog.cpp
+++ b/src/qmmpui/filedialog.cpp
@@ -163,7 +163,7 @@ void FileDialog::registerExternalFactories()
QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
QObject *plugin = loader.instance();
if (loader.isLoaded())
- qDebug("FileDialog: plugin loaded - %s", qPrintable(fileName));
+ qDebug("FileDialog: loaded plugin %s", qPrintable(fileName));
else
qDebug("FileDialog: %s",qPrintable(loader.errorString()));
diff --git a/src/qmmpui/general.cpp b/src/qmmpui/general.cpp
index f62339a19..c78df7b0e 100644
--- a/src/qmmpui/general.cpp
+++ b/src/qmmpui/general.cpp
@@ -43,7 +43,7 @@ void General::checkFactories()
QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
QObject *plugin = loader.instance();
if (loader.isLoaded())
- qDebug("General: plugin loaded - %s", qPrintable(fileName));
+ qDebug("General: loaded plugin %s", qPrintable(fileName));
else
qWarning("General: %s", qPrintable(loader.errorString ()));
diff --git a/src/qmmpui/playlistparser.cpp b/src/qmmpui/playlistparser.cpp
index f306c688b..870edff33 100644
--- a/src/qmmpui/playlistparser.cpp
+++ b/src/qmmpui/playlistparser.cpp
@@ -87,7 +87,7 @@ void PlaylistParser::loadExternalPlaylistFormats()
QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
QObject *plugin = loader.instance();
if (loader.isLoaded())
- qDebug("PlaylistParser: plugin loaded - %s", qPrintable(fileName));
+ qDebug("PlaylistParser: loaded plugin %s", qPrintable(fileName));
else
qWarning("PlaylistParser: %s", qPrintable(loader.errorString ()));
diff --git a/src/qmmpui/uiloader.cpp b/src/qmmpui/uiloader.cpp
index b43a1117f..987e4997d 100644
--- a/src/qmmpui/uiloader.cpp
+++ b/src/qmmpui/uiloader.cpp
@@ -41,7 +41,7 @@ void UiLoader::checkFactories()
QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
QObject *plugin = loader.instance();
if (loader.isLoaded())
- qDebug("UiLoader: plugin loaded - %s", qPrintable(fileName));
+ qDebug("UiLoader: loaded plugin %s", qPrintable(fileName));
else
qWarning("UiLoader: %s", qPrintable(loader.errorString()));