[AboutDialog]

Fixed a issue that Value column isn't updated if value is empty string.
This commit is contained in:
spx 2010-09-21 09:18:19 +00:00
parent 4ccb0aa40b
commit e812e079ec

View File

@ -230,7 +230,7 @@ void UpdateAboutStatistics(LPCTSTR entryName)
ListView_InsertItem(widget, &vitem);
}
if (val && wcslen(val) > 0)
if (val)
{
ListView_SetItemText(widget, index, 1, (WCHAR*)val);
}