From 252eb8fd71f9c118efdcea5e77a6395654757411 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 7 Sep 1998 08:52:10 +0000 Subject: [PATCH] "const" added to wxAceelTable ctor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@693 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/accel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/accel.cpp b/src/msw/accel.cpp index 391937f23a..86a28418e4 100644 --- a/src/msw/accel.cpp +++ b/src/msw/accel.cpp @@ -97,7 +97,7 @@ wxAcceleratorTable::wxAcceleratorTable(const wxString& resource) extern int wxCharCodeWXToMSW(int id, bool *isVirtual); // Create from an array -wxAcceleratorTable::wxAcceleratorTable(int n, wxAcceleratorEntry entries[]) +wxAcceleratorTable::wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]) { m_refData = new wxAcceleratorRefData; -- 2.45.2