From 10310d83222024c0a4f22e04ae3cc6f18caf5e47 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 7 Sep 1998 08:46:57 +0000 Subject: [PATCH] "const" added to wxAccelTable ctor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@691 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/msw/accel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.45.2