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:
unodgs 2009-06-12 20:55:50 +00:00
parent 1e5c95c5da
commit a093e87bd3

View file

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