]> git.saurik.com Git - wxWidgets.git/commitdiff
"const" added to wxAccelTable ctor
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 7 Sep 1998 08:46:57 +0000 (08:46 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 7 Sep 1998 08:46:57 +0000 (08:46 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@691 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/accel.h

index 2f2c013a10f649c0a27a21e91d1ece3b394f0fb4..af0a7ca0e71143169c19dfb1aeaa8422f4f6ec85 100644 (file)
@@ -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); }