author | zecke <zecke> | 2004-08-25 21:53:50 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-08-25 21:53:50 (UTC) |
commit | a64c92819cd3106584d9005e42ed972726081a94 (patch) (side-by-side diff) | |
tree | f8ac45c7154db71a988cc5a9596587a30b9d9cce | |
parent | df3e4c8b13c16aeb96e70dbaa2d409f83eed988e (diff) | |
download | opie-a64c92819cd3106584d9005e42ed972726081a94.zip opie-a64c92819cd3106584d9005e42ed972726081a94.tar.gz opie-a64c92819cd3106584d9005e42ed972726081a94.tar.bz2 |
Respect the value passed to the method
-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 @@ -7,2 +7,3 @@ #include "oconfig.h" +#include "odebug.h" @@ -557,3 +558,3 @@ OPluginItem::List OGenericPluginLoader::plugins( const QString& _dir, bool sorte - if ( m_isSorted ) { + if ( sorted ) { QStringList pos = cfg.readListEntry( "Positions", '.' ); @@ -562,2 +563,3 @@ OPluginItem::List OGenericPluginLoader::plugins( const QString& _dir, bool sorte positionMap.insert( *it++, (*it++).toInt() ); + } |