Add missing semicolon to examples using wxDECLARE_XXX() macros
Such macros must be followed by semicolons but a couple of examples were missing them. Closes https://github.com/wxWidgets/wxWidgets/pull/1337 Closes #18408.
This commit is contained in:
@@ -4799,7 +4799,7 @@ wxEventType wxNewEventType();
|
||||
|
||||
This is mostly used by wxWidgets internally, e.g.
|
||||
@code
|
||||
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_BUTTON, wxCommandEvent)
|
||||
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_BUTTON, wxCommandEvent);
|
||||
@endcode
|
||||
*/
|
||||
#define wxDECLARE_EXPORTED_EVENT( expdecl, name, cls ) \
|
||||
|
Reference in New Issue
Block a user