-rw-r--r-- | library/backend/stringutil.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/library/backend/stringutil.cpp b/library/backend/stringutil.cpp index b5fbd3e..f1ad1b9 100644 --- a/library/backend/stringutil.cpp +++ b/library/backend/stringutil.cpp @@ -62,9 +62,9 @@ static const char collationHack[] = { 0x1a, //C-Z 0x1b, //C-[ -0x1c, //C-\ +0x1c, /* C-\ */ 0x1d, //C-] 0x1e, //C-^ 0x1f, //C-_ -' ', // +' ', // '!', //! '"', //" @@ -126,5 +126,5 @@ static const char collationHack[] = { 'Z', //Z '[', //[ -'\\', //\ +'\\', /* \ */ ']', //] '^', //^ @@ -190,5 +190,5 @@ static const char collationHack[] = { 0x9a, //C-M-Z 0x9b, //C-M-[ -0x9c, //C-M-\ +0x9c, /* C-M-\ */ 0x9d, //C-M-] 0x9e, //C-M-^ @@ -320,5 +320,5 @@ QString buildSortKey( const QString & s1, const QString & s2 ) } -QString buildSortKey( const QString & s1, const QString & s2, +QString buildSortKey( const QString & s1, const QString & s2, const QString & s3 ) { @@ -338,5 +338,5 @@ int compare( const QString & s1, const QString & s2 ) const QChar* u1 = s1.unicode(); const QChar* u2 = s2.unicode(); - + if ( u1 == u2 ) return 0; |