Skip to content

Commit

Permalink
wxwidgets.cfg: Added missing const attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
orbitcowboy committed Apr 6, 2024
1 parent a40fabb commit 1f3e490
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cfg/wxwidgets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5411,20 +5411,22 @@
</arg>
</function>
<!-- http://docs.wxwidgets.org/trunk/classwx_string.html#ace32756bab999f8aae9be0cf981fc449 -->
<!-- bool wxString::IsEmpty() -->
<!-- bool wxString::IsEmpty() const -->
<function name="wxString::IsEmpty">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="bool"/>
<use-retval/>
<const/>
</function>
<!-- http://docs.wxwidgets.org/trunk/classwx_string.html#ae0a2020695a6ecd9ee49c14fe7429176 -->
<!-- bool wxString::IsNull() -->
<!-- bool wxString::IsNull() const -->
<function name="wxString::IsNull">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="bool"/>
<use-retval/>
<const/>
<warn severity="style">This is the same as 'wxString::IsEmpty' and is kept for wxWidgets 1.xx compatibility. You should not use it in new code.</warn>
</function>
<!-- bool wxString::Contains(const wxString & str) const-->
Expand Down

0 comments on commit 1f3e490

Please sign in to comment.