-rw-r--r-- | noncore/graphics/opie-eye/slave/slaveiface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/graphics/opie-eye/slave/slaveiface.h b/noncore/graphics/opie-eye/slave/slaveiface.h index 18656c5..e0ca7f3 100644 --- a/noncore/graphics/opie-eye/slave/slaveiface.h +++ b/noncore/graphics/opie-eye/slave/slaveiface.h @@ -26,13 +26,13 @@ public: virtual QPixmap pixmap( const QString&, int width, int height ) = 0; private: QStringList m_list; }; inline bool SlaveInterface::supports( const QString& str)const { - return m_list.contains( QFileInfo( str ).extension(false) ); + return m_list.contains( QFileInfo( str ).extension(false).lower() ); } typedef SlaveInterface* (*phunkSlaveCreateFunc )(); typedef QMap<QString,phunkSlaveCreateFunc> SlaveMap; typedef QMap<QString, SlaveInterface*> SlaveObjects; |