Fix some merge issues.
This commit is contained in:
parent
2d5da8b04f
commit
db2cda7271
|
@ -285,6 +285,16 @@ public:
|
||||||
|
|
||||||
void RebuildRows( wxCheckBox* groupComponentsBox, wxDataViewListCtrl* fieldsCtrl )
|
void RebuildRows( wxCheckBox* groupComponentsBox, wxDataViewListCtrl* fieldsCtrl )
|
||||||
{
|
{
|
||||||
|
if ( GetView() )
|
||||||
|
{
|
||||||
|
// Commit any pending in-place edits before the row gets moved out from under
|
||||||
|
// the editor.
|
||||||
|
GetView()->DisableCellEditControl();
|
||||||
|
|
||||||
|
wxGridTableMessage msg( this, wxGRIDTABLE_NOTIFY_ROWS_DELETED, 0, m_rows.size() );
|
||||||
|
GetView()->ProcessTableMessage( msg );
|
||||||
|
}
|
||||||
|
|
||||||
m_rows.clear();
|
m_rows.clear();
|
||||||
|
|
||||||
for( unsigned i = 0; i < m_componentRefs.GetCount(); ++i )
|
for( unsigned i = 0; i < m_componentRefs.GetCount(); ++i )
|
||||||
|
@ -323,6 +333,12 @@ public:
|
||||||
return RefDesStringCompare( lhRef, rhRef ) < 0;
|
return RefDesStringCompare( lhRef, rhRef ) < 0;
|
||||||
} );
|
} );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( GetView() )
|
||||||
|
{
|
||||||
|
wxGridTableMessage msg( this, wxGRIDTABLE_NOTIFY_ROWS_APPENDED, m_rows.size() );
|
||||||
|
GetView()->ProcessTableMessage( msg );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue