aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-05-12 10:08:23 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-05-12 10:08:23 +0000
commit739aee858e73574631fbefb9d6161c2b501c2682 (patch)
tree39fdc7433ea2dcfb48e77bfec4b5dee5b441ddc0 /src/qmmpui
parent0fc577f641bc7a8e60efef8cfbba480b32f0ae6c (diff)
downloadqmmp-739aee858e73574631fbefb9d6161c2b501c2682.tar.gz
qmmp-739aee858e73574631fbefb9d6161c2b501c2682.tar.bz2
qmmp-739aee858e73574631fbefb9d6161c2b501c2682.zip
added plugin cache
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3441 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui')
-rw-r--r--src/qmmpui/aboutdialog.cpp2
-rw-r--r--src/qmmpui/configdialog.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/qmmpui/aboutdialog.cpp b/src/qmmpui/aboutdialog.cpp
index ef79034e4..c464ae5f2 100644
--- a/src/qmmpui/aboutdialog.cpp
+++ b/src/qmmpui/aboutdialog.cpp
@@ -75,7 +75,7 @@ QString AboutDialog::loadAbout()
text.append("<h5>"+tr("Input plugins:")+"</h5>");
text.append("<ul type=\"square\">");
- foreach(DecoderFactory *fact, *Decoder::factories())
+ foreach(DecoderFactory *fact, Decoder::factories())
{
text.append("<li>");
text.append(fact->properties().name);
diff --git a/src/qmmpui/configdialog.cpp b/src/qmmpui/configdialog.cpp
index dc7e92977..e98e09b7d 100644
--- a/src/qmmpui/configdialog.cpp
+++ b/src/qmmpui/configdialog.cpp
@@ -182,7 +182,7 @@ void ConfigDialog::loadPluginsInfo()
load input plugins information
*/
item = new QTreeWidgetItem (m_ui->treeWidget, QStringList() << tr("Decoders"));
- foreach(DecoderFactory *factory, *Decoder::factories())
+ foreach(DecoderFactory *factory, Decoder::factories())
{
new PluginItem (item, factory, Decoder::file(factory));
}