mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Renamed 'not' to 'negated', since 'not' is special in C++. Added some includes, etc. This was SVN commit r4665.
8 lines
154 B
C++
8 lines
154 B
C++
#include "stdafx.h"
|
|
|
|
#include "ActionButton.h"
|
|
|
|
BEGIN_EVENT_TABLE(ActionButton, wxButton)
|
|
EVT_BUTTON(wxID_ANY, ActionButton::OnClick)
|
|
END_EVENT_TABLE()
|
|
|