/////////////////////////////////////////////////////////////////////////////
-// Name: accel.cpp
+// Name: src/mac/classic/accel.cpp
// Purpose: wxAcceleratorTable
// Author: Stefan Csomor
// Modified by:
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#include "wx/setup.h"
+#include "wx/wxprec.h"
+
#include "wx/accel.h"
-#include "wx/string.h"
+
+#ifndef WX_PRECOMP
+ #include "wx/string.h"
+#endif
IMPLEMENT_DYNAMIC_CLASS(wxAcceleratorTable, wxObject)
WX_DECLARE_LIST(wxAcceleratorEntry, wxAccelList);
#include "wx/listimpl.cpp"
-WX_DEFINE_LIST(wxAccelList);
+WX_DEFINE_LIST(wxAccelList)
// ----------------------------------------------------------------------------
// wxAccelRefData: the data used by wxAcceleratorTable
wxAcceleratorRefData::~wxAcceleratorRefData()
{
- m_accels.DeleteContents( TRUE );
+ m_accels.DeleteContents( true );
}
wxAcceleratorTable::wxAcceleratorTable()
return -1;
}
-
-