]> git.saurik.com Git - wxWidgets.git/blame - src/mac/data.cpp
don't show the accels on the controls if the system is configured to hide them initia...
[wxWidgets.git] / src / mac / data.cpp
CommitLineData
e9576ca5 1/////////////////////////////////////////////////////////////////////////////
6a76384f
VZ
2// Name: mac/data.cpp
3// Purpose: Various global Mac-specific data
a31a5f85 4// Author: Stefan Csomor
e9576ca5 5// Modified by:
a31a5f85 6// Created: 1998-01-01
e9576ca5 7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
6a76384f 9// Licence: wxWindows licence
e9576ca5
SC
10/////////////////////////////////////////////////////////////////////////////
11
6a76384f 12#include "wx/event.h"
e9576ca5 13
2f1ae414
SC
14#if wxUSE_SHARED_LIBRARY
15///// Event tables (also must be in one, statically-linked file for shared libraries)
16
17// This is the base, wxEvtHandler 'bootstrap' code which is expanded manually here
18const wxEventTable *wxEvtHandler::GetEventTable() const { return &wxEvtHandler::sm_eventTable; }
19
20const wxEventTable wxEvtHandler::sm_eventTable =
e40298d5 21 { NULL, &wxEvtHandler::sm_eventTableEntries[0] };
2f1ae414
SC
22
23const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] = { { 0, 0, 0, NULL } };
24#endif
25