[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    branches/KDE/3.5/kdelibs/kdecore
From:       Thomas McGuire <mcguire () kde ! org>
Date:       2009-06-26 13:13:02
Message-ID: 1246021982.318346.936.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 987597 by tmcguire:

Fix passwords with '!' in them here as well.


 M  +1 -1      kstringhandler.cpp  


--- branches/KDE/3.5/kdelibs/kdecore/kstringhandler.cpp #987596:987597
@@ -558,7 +558,7 @@
   QString result;
   const QChar *unicode = str.unicode();
   for ( uint i = 0; i < str.length(); ++i )
-    result += ( unicode[ i ].unicode() < 0x21 ) ? unicode[ i ] :
+    result += ( unicode[ i ].unicode() <= 0x21 ) ? unicode[ i ] :
         QChar( 0x1001F - unicode[ i ].unicode() );
 
   return result;

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic