aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-09-01 13:50:34 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-09-01 13:50:34 +0000
commit80715829e3ea6bafd3a485e4840b57f55bc34d08 (patch)
tree2ec5484d5fe10e56f4ddbb69f9644441be074a2c /src/qmmpui
parent7a1bbda224cf38a593f39a1bd9c02e2027e6f73a (diff)
downloadqmmp-80715829e3ea6bafd3a485e4840b57f55bc34d08.tar.gz
qmmp-80715829e3ea6bafd3a485e4840b57f55bc34d08.tar.bz2
qmmp-80715829e3ea6bafd3a485e4840b57f55bc34d08.zip
changed some debug messages
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2920 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui')
-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
5 files changed, 5 insertions, 5 deletions
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()));