]> git.saurik.com Git - wxWidgets.git/commitdiff
Explicitly document event types for EVT_CLOSE().
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 17 Nov 2009 14:47:44 +0000 (14:47 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 17 Nov 2009 14:47:44 +0000 (14:47 +0000)
Closes #11445.

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

interface/wx/event.h

index 3365304b3fc2893d4fb0a4ed3aa8e65ec4a9aef3..5afe41d6ec746485dfec054aa6a885662e1d0c18 100644 (file)
@@ -3409,13 +3409,13 @@ public:
 
     @beginEventTable{wxCloseEvent}
     @event{EVT_CLOSE(func)}
-        Process a close event, supplying the member function.
+        Process a @c wxEVT_CLOSE_WINDOW command event, supplying the member function.
         This event applies to wxFrame and wxDialog classes.
     @event{EVT_QUERY_END_SESSION(func)}
-        Process a query end session event, supplying the member function.
+        Process a @c wxEVT_QUERY_END_SESSION session event, supplying the member function.
         This event can be handled in wxApp-derived class only.
     @event{EVT_END_SESSION(func)}
-        Process an end session event, supplying the member function.
+        Process a @c wxEVT_END_SESSION session event, supplying the member function.
         This event can be handled in wxApp-derived class only.
     @endEventTable