summaryrefslogtreecommitdiff
path: root/www/kdewebdev3/patches/patch-aa
blob: 2ae843527d9e11a62e25135b6c15126523feec7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$NetBSD: patch-aa,v 1.1.1.1 2004/08/21 15:24:06 markd Exp $

--- kfilereplace/kexpression.cpp.orig	2004-03-27 06:25:58.000000000 +1200
+++ kfilereplace/kexpression.cpp
@@ -115,7 +115,7 @@ bool KExpression::doesStringMatch(const 
     }
   else // case insensitive
     {        
-     bCharMatches = (::tolower(szString[0]) == ::tolower(szText[0]));
+     bCharMatches = (tolower(szString[0]) == tolower(szText[0]));
     }
 
   // CASE 3: IGNORE WHITESPACES (\t, \n, \r, double-spaces) OPTIONS IS ACTIVATED, AND THERE IS ONE HERE