We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6e9e37 commit 3f7660fCopy full SHA for 3f7660f
docs/changes.txt
@@ -235,6 +235,10 @@ Changes in behaviour which may result in build errors
235
3.2.4: (released 2024-??-??)
236
----------------------------
237
238
+wxMSW:
239
+
240
+- Fix MSVS warning about redundant "const" in wx/itemid.h (#23590).
241
242
243
3.2.3: (released 2023-10-10)
244
include/wx/itemid.h
@@ -33,7 +33,7 @@ class wxItemId
33
34
bool IsOk() const { return m_pItem != NULL; }
35
Type GetID() const { return m_pItem; }
36
- operator const Type() const { return m_pItem; }
+ operator Type() const { return m_pItem; }
37
38
// This is used for implementation purposes only.
39
Type operator->() const { return m_pItem; }
0 commit comments