diff --git a/src/xmlpatterns/functions/qpatternplatform.cpp b/src/xmlpatterns/functions/qpatternplatform.cpp
index 91d374834045645166f0c054c687c5ca38c2d350..08dc2f1fc245fb8e4cac0194de166e4b87a3af53 100644
--- a/src/xmlpatterns/functions/qpatternplatform.cpp
+++ b/src/xmlpatterns/functions/qpatternplatform.cpp
@@ -64,7 +64,7 @@ namespace QPatternist
     class PatternFlag
     {
     public:
-        typedef QHash<QChar, PatternFlag> Hash;
+        typedef QMap<QChar, PatternFlag> Hash;
 
         inline PatternFlag() : flag(PatternPlatform::NoFlags)
         {
diff --git a/tests/auto/xmlpatterns/stderrBaselines/PrintalistofavailableregexpflagsTheavailableflagsareformattedinacomplexway..txt b/tests/auto/xmlpatterns/stderrBaselines/PrintalistofavailableregexpflagsTheavailableflagsareformattedinacomplexway..txt
index 9f09298df3939be0257629abc94b67effa529a16..ff544022310dde5d1ab6b5c6a8bf343733438661 100644
--- a/tests/auto/xmlpatterns/stderrBaselines/PrintalistofavailableregexpflagsTheavailableflagsareformattedinacomplexway..txt
+++ b/tests/auto/xmlpatterns/stderrBaselines/PrintalistofavailableregexpflagsTheavailableflagsareformattedinacomplexway..txt
@@ -1,5 +1,5 @@
 Error FORX0001 in file:///home/fenglich/dev/qt-xslt/tests/auto/xmlpatterns/queries/invalidRegexpFlag.xq, at line 1, column 1: I is an invalid flag for regular expressions. Valid flags are:
-x - Whitespace characters are removed, except when they appear in character classes
 i - Matches are case insensitive
 m - ^ and $ match the start and end of a line.
 s - . matches newline characters
+x - Whitespace characters are removed, except when they appear in character classes