with RR.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5877
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
}
case LVN_DELETEALLITEMS:
}
case LVN_DELETEALLITEMS:
- // what's the sense of generating a wxWin event for this when
- // it's absolutely not portable?
-#if 0
- eventType = wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS;
+ // What's the sense of generating a wxWin event for this when
+ // it's absolutely not portable?
+ // This is perfectly portable, RR
+#if 1
+ eventType = wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS;
// return TRUE to suppress all additional LVN_DELETEITEM
// notifications - this makes deleting all items from a list ctrl
// much faster
*result = TRUE;
// return TRUE to suppress all additional LVN_DELETEITEM
// notifications - this makes deleting all items from a list ctrl
// much faster
*result = TRUE;
if ( !GetEventHandler()->ProcessEvent(event) )
return FALSE;
if ( !GetEventHandler()->ProcessEvent(event) )
return FALSE;
+ if (eventType == wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS)
+ {
+ // No postprocessing, because we want *return to
+ // be TRUE so that no further DeleteItem events
+ // are sent, RR.
+ return TRUE;
+ }
+
// post processing
// ---------------
// post processing
// ---------------