mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
Fixed minor bug with find&replace
git-svn-id: svn://ultimatepp.org/upp/trunk@1350 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
9f682104a4
commit
893ba69a96
1 changed files with 1 additions and 1 deletions
|
|
@ -308,7 +308,7 @@ int CodeEditor::BlockReplace(WString find, WString replace, bool wholeword, bool
|
|||
PlaceCaret(l);
|
||||
int count = 0;
|
||||
for(;;) {
|
||||
if(!Find(false, find, wholeword, ignorecase, wildcards, true) || cursor >= h) break;
|
||||
if(!Find(false, find, wholeword, ignorecase, wildcards, true) || cursor > h) break;
|
||||
int hh, ll;
|
||||
GetSelection(ll, hh);
|
||||
CachePos(ll);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue