ResourceItem: always return name extension in lower case

Always return name extension in lower case so we can easily match it
somewhere else or use it as key for hash tables.

Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
This commit is contained in:
Tobias Doerffel
2009-07-05 15:56:33 +02:00
parent 2a69917d51
commit 09ff1bb9ed

View File

@@ -95,7 +95,7 @@ public:
inline QString nameExtension() const
{
return name().section( '.', -1 );
return name().section( '.', -1 ).toLower();
}
Type type() const