]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix selection event sending for Ctrl-click in generic wxDataViewCtrl.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 4 Feb 2010 01:20:02 +0000 (01:20 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 4 Feb 2010 01:20:02 +0000 (01:20 +0000)
Ctrl-clicking on the only currently selected item in wxDataViewCtrl crashed
because we dereferenced first element of the empty m_selection array when
generating the selection change event.

Instead, send the event for the current item, this should be more consistent
with the native versions behaviour and at the very least doesn't crash.

Closes #11684.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63382 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/datavgen.cpp

index abb561ae6e70adee155a0e854fb191a072d7500a..9ae974c053c3918d3ae3a3333360209bc3ebadc4 100644 (file)
@@ -3694,7 +3694,7 @@ void wxDataViewMainWindow::OnMouse( wxMouseEvent &event )
             {
                 ChangeCurrentRow(current);
                 ReverseRowSelection(m_currentRow);
-                SendSelectionChangedEvent(GetItemByRow(m_selection[0]) );
+                SendSelectionChangedEvent(GetItemByRow(m_currentRow));
             }
             else if (event.ShiftDown())
             {