From bf26236cc2824ebe28322bcec1cf2366018f8733 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 2 Mar 2004 11:04:44 +0000 Subject: [PATCH] Uppercase letters were accidently converted in the wrong way, and therefore, ignored in the find panel. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6852 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/diskprobe/FindWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/diskprobe/FindWindow.cpp b/src/apps/diskprobe/FindWindow.cpp index 2849f97a66..ac850a2162 100644 --- a/src/apps/diskprobe/FindWindow.cpp +++ b/src/apps/diskprobe/FindWindow.cpp @@ -109,7 +109,7 @@ FindTextView::HexReformat(int32 oldCursor, int32 &newCursor) char c = text[i]; if (c >= 'A' && c <= 'F') - c += 'A' - 'a'; + c += 'a' - 'A'; if ((c >= 'a' && c <= 'f') || (c >= '0' && c <= '9')) insert[out++] = c;