From: Vadim Zeitlin Date: Mon, 7 Sep 1998 08:46:57 +0000 (+0000) Subject: "const" added to wxAccelTable ctor X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/10310d83222024c0a4f22e04ae3cc6f18caf5e47 "const" added to wxAccelTable ctor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@691 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/msw/accel.h b/include/wx/msw/accel.h index 2f2c013a10..af0a7ca0e7 100644 --- a/include/wx/msw/accel.h +++ b/include/wx/msw/accel.h @@ -58,7 +58,7 @@ DECLARE_DYNAMIC_CLASS(wxAcceleratorTable) public: wxAcceleratorTable(); wxAcceleratorTable(const wxString& resource); // Load from .rc resource - wxAcceleratorTable(int n, wxAcceleratorEntry entries[]); // Load from array + wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]); // Load from array // Copy constructors inline wxAcceleratorTable(const wxAcceleratorTable& accel) { Ref(accel); }