diff options
Diffstat (limited to 'src/qmmpui')
| -rw-r--r-- | src/qmmpui/commandlinemanager.cpp | 2 | ||||
| -rw-r--r-- | src/qmmpui/filedialog.cpp | 2 | ||||
| -rw-r--r-- | src/qmmpui/general.cpp | 2 | ||||
| -rw-r--r-- | src/qmmpui/playlistparser.cpp | 2 | ||||
| -rw-r--r-- | src/qmmpui/uiloader.cpp | 2 |
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())); |
