mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-22 06:12:32 -06:00
Fixed crash in search for incorrect converters
git-svn-id: svn://ultimatepp.org/upp/trunk@1301 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
1e5c95c5da
commit
a093e87bd3
1 changed files with 2 additions and 2 deletions
|
|
@ -7173,7 +7173,7 @@ int GridCtrl::ShowMatchedRows(const WString &f)
|
|||
if(hitems[j].hidden)
|
||||
continue;
|
||||
|
||||
if(Match(f, (WString) GetStdConvertedColumn(j, it.val), s, e))
|
||||
if(Match(f, (WString) GetStdConvertedColumn(idh, it.val), s, e))
|
||||
{
|
||||
first_matched_row = i;
|
||||
rowfnd = i;
|
||||
|
|
@ -7204,7 +7204,7 @@ int GridCtrl::ShowMatchedRows(const WString &f)
|
|||
if(hitems[j].hidden)
|
||||
continue;
|
||||
|
||||
if(Match(f, (WString) GetStdConvertedColumn(j, it.val), s, e))
|
||||
if(Match(f, (WString) GetStdConvertedColumn(idh, it.val), s, e))
|
||||
{
|
||||
match = true;
|
||||
it.Found(search_highlight);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue