compilation fix for wxUSE_STL==1 build
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44700 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -817,7 +817,8 @@ bool wxGtkDataViewListModelNotifier::RowChanged( unsigned int row )
|
||||
bool wxGtkDataViewListModelNotifier::ValueChanged( unsigned int model_col, unsigned int model_row )
|
||||
{
|
||||
// This adds GTK+'s missing MVC logic for ValueChanged
|
||||
wxNode *node = GetOwner()->m_viewingColumns.GetFirst();
|
||||
wxObjectList::compatibility_iterator
|
||||
node = GetOwner()->m_viewingColumns.GetFirst();
|
||||
while (node)
|
||||
{
|
||||
wxDataViewViewingColumn* viewing_column = (wxDataViewViewingColumn*) node->GetData();
|
||||
@@ -854,7 +855,8 @@ bool wxGtkDataViewListModelNotifier::RowsReordered( unsigned int *new_order )
|
||||
gtk_tree_path_free (path);
|
||||
|
||||
// This adds GTK+'s missing MVC logic for RowsReordered
|
||||
wxNode *node = GetOwner()->m_viewingColumns.GetFirst();
|
||||
wxObjectList::compatibility_iterator
|
||||
node = GetOwner()->m_viewingColumns.GetFirst();
|
||||
while (node)
|
||||
{
|
||||
wxDataViewViewingColumn* viewing_column = (wxDataViewViewingColumn*) node->GetData();
|
||||
|
Reference in New Issue
Block a user