-rw-r--r-- | libopie2/opiecore/opluginloader.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libopie2/opiecore/opluginloader.cpp b/libopie2/opiecore/opluginloader.cpp index e7eddc2..1edf3a1 100644 --- a/libopie2/opiecore/opluginloader.cpp +++ b/libopie2/opiecore/opluginloader.cpp | |||
@@ -2,12 +2,13 @@ | |||
2 | * LGPLv2 or later | 2 | * LGPLv2 or later |
3 | * zecke@handhelds.org | 3 | * zecke@handhelds.org |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "opluginloader.h" | 6 | #include "opluginloader.h" |
7 | #include "oconfig.h" | 7 | #include "oconfig.h" |
8 | #include "odebug.h" | ||
8 | 9 | ||
9 | #include <qpe/qpeapplication.h> | 10 | #include <qpe/qpeapplication.h> |
10 | 11 | ||
11 | #include <qdir.h> | 12 | #include <qdir.h> |
12 | #include <qdict.h> | 13 | #include <qdict.h> |
13 | #include <qtl.h> | 14 | #include <qtl.h> |
@@ -552,17 +553,18 @@ OPluginItem::List OGenericPluginLoader::plugins( const QString& _dir, bool sorte | |||
552 | 553 | ||
553 | 554 | ||
554 | QStringList excludes = cfg.readListEntry( "Excluded", ',' ); | 555 | QStringList excludes = cfg.readListEntry( "Excluded", ',' ); |
555 | for ( QStringList::Iterator it = excludes.begin(); it != excludes.end(); ++it ) | 556 | for ( QStringList::Iterator it = excludes.begin(); it != excludes.end(); ++it ) |
556 | excludedMap.insert( *it, -2 ); | 557 | excludedMap.insert( *it, -2 ); |
557 | 558 | ||
558 | if ( m_isSorted ) { | 559 | if ( sorted ) { |
559 | QStringList pos = cfg.readListEntry( "Positions", '.' ); | 560 | QStringList pos = cfg.readListEntry( "Positions", '.' ); |
560 | QStringList::Iterator it = pos.begin(); | 561 | QStringList::Iterator it = pos.begin(); |
561 | while ( it != pos.end() ) | 562 | while ( it != pos.end() ) |
562 | positionMap.insert( *it++, (*it++).toInt() ); | 563 | positionMap.insert( *it++, (*it++).toInt() ); |
564 | |||
563 | } | 565 | } |
564 | 566 | ||
565 | 567 | ||
566 | 568 | ||
567 | 569 | ||
568 | QStringList list = dir.entryList(); | 570 | QStringList list = dir.entryList(); |