Fix typo in a comment in dataview sample

No real changes, just fix a typo in "invisible".

Closes https://github.com/wxWidgets/wxWidgets/pull/1899
This commit is contained in:
orbitcowboy
2020-06-20 00:37:08 +02:00
committed by Vadim Zeitlin
parent 858f705058
commit 915dcce320

View File

@@ -271,7 +271,7 @@ wxDataViewItem MyMusicTreeModel::GetParent( const wxDataViewItem &item ) const
bool MyMusicTreeModel::IsContainer( const wxDataViewItem &item ) const
{
// the invisble root node can have children
// the invisible root node can have children
// (in our model always "MyMusic")
if (!item.IsOk())
return true;