Fix octal search typo

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository@198 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
harrybharry 2008-05-06 21:23:21 +00:00
parent 929d1d43ba
commit b177e060bc
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ int Searching::convertExtendedToString(const char * query, char * result, int le
int size = 0, base = 0;
if (current == 'b') { //11111111
size = 8, base = 2;
} else if (current == '0') { //377
} else if (current == 'o') { //377
size = 3, base = 8;
} else if (current == 'd') { //255
size = 3, base = 10;