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
This commit is contained in:
Axel Dörfler 2004-03-02 11:04:44 +00:00
parent 218f7a3586
commit bf26236cc2

View File

@ -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;