From 5c53de6d11e4a3d61e52be851479713f2d8af67e Mon Sep 17 00:00:00 2001
From: tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>
Date: Mon, 30 Aug 2010 23:34:59 +0000
Subject: Patched the string handler

git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1170160 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
---
 kdecore/kstringhandler.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kdecore/kstringhandler.cpp b/kdecore/kstringhandler.cpp
index 3c13a9b57..8b5ca1a7d 100644
--- a/kdecore/kstringhandler.cpp
+++ b/kdecore/kstringhandler.cpp
@@ -558,7 +558,7 @@ TQString KStringHandler::obscure( const TQString &str )
   TQString result;
   const TQChar *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 ] :
         TQChar( 0x1001F - unicode[ i ].unicode() );
 
   return result;
-- 
cgit v1.2.3

