Rename wxEVT_DIRCTRL_CHANGED to wxEVT_DIRCTRL_SELECTIONCHANGED.

This is more consistent with the existing wxEVT_FILECTRL_SELECTIONCHANGED.

Closes #15209.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74002 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2013-05-16 14:33:01 +00:00
parent c6dae1699e
commit 40c7c7f473
5 changed files with 13 additions and 11 deletions

View File

@@ -51,9 +51,9 @@ enum
@library{wxcore}
@category{ctrl}
@appearance{genericdirctrl}
@event{EVT_DIRCTRL_CHANGED(id, func)}
@event{EVT_DIRCTRL_SELECTIONCHANGED(id, func)}
Selected directory has changed.
Processes a @c wxEVT_DIRCTRL_CHANGED event type.
Processes a @c wxEVT_DIRCTRL_SELECTIONCHANGED event type.
Notice that this event is generated even for the changes done by the
program itself and not only those done by the user.
@since 2.9.5
@@ -278,4 +278,4 @@ public:
void FillFilterList(const wxString& filter, int defaultFilter);
};
wxEventType wxEVT_DIRCTRL_CHANGED;
wxEventType wxEVT_DIRCTRL_SELECTIONCHANGED;