The great wxVScrolledWindow refactoring: allow using it both horizontal and
vertical directions (slightly modified patch 1671181) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45330 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -327,14 +327,14 @@ void wxHtmlListBox::RefreshLine(size_t line)
|
||||
{
|
||||
m_cache->InvalidateRange(line, line);
|
||||
|
||||
wxVListBox::RefreshLine(line);
|
||||
wxVListBox::RefreshRow(line);
|
||||
}
|
||||
|
||||
void wxHtmlListBox::RefreshLines(size_t from, size_t to)
|
||||
{
|
||||
m_cache->InvalidateRange(from, to);
|
||||
|
||||
wxVListBox::RefreshLines(from, to);
|
||||
wxVListBox::RefreshRows(from, to);
|
||||
}
|
||||
|
||||
void wxHtmlListBox::RefreshAll()
|
||||
|
Reference in New Issue
Block a user