Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wxwidgets.cfg: Added support for more interfaces #6105

Merged
merged 2 commits into from
Mar 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 40 additions & 1 deletion cfg/wxwidgets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7365,6 +7365,26 @@
<returnValue type="wxString"/>
<warn severity="style">Use 'wxStyledTextEvent::GetString()' instead.</warn>
</function>
<!-- wxString wxToolbookEvent::GetString() const-->
<!-- wxString wxStyledTextEvent::GetString() const-->
<function name="wxStyledTextEvent::GetString,wxToolbookEvent::GetString">
<noreturn>false</noreturn>
<use-retval/>
<const/>
<leak-ignore/>
<returnValue type="wxString"/>
</function>
<!-- int wxToolbookEvent::GetOldSelection( void ) const -->
<!-- int wxToolbookEvent::GetSelection( void ) const -->
<!-- int wxBookCtrlEvent::GetOldSelection( void ) const -->
<!-- int wxBookCtrlEvent::GetSelection( void ) const -->
<function name="wxBookCtrlEvent::GetOldSelection,wxBookCtrlEvent::GetSelection,wxToolbookEvent::GetOldSelection,wxToolbookEvent::GetSelection">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="int"/>
<use-retval/>
<const/>
</function>
<!-- void wxStyledTextEvent::SetText(const wxString & t) -->
<!-- void wxStyledTextEvent::SetDragText(const wxString & val) -->
<function name="wxStyledTextEvent::SetText,wxStyledTextEvent::SetDragText">
Expand Down Expand Up @@ -14289,6 +14309,24 @@ wxItemKind kind = wxITEM_NORMAL) -->
<use-retval/>
<const/>
</function>
<!-- int wxWithImages::GetImageCount( void ) const -->
<!-- int wxBookCtrlBase::GetImageCount( void ) const -->
<function name="wxWithImages::GetImageCount,wxBookCtrlBase::GetImageCount">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="int"/>
<use-retval/>
<const/>
</function>
<!-- wxImageList * wxWithImages::GetImageList( void ) const -->
<!-- wxImageList * wxBookCtrlBase::GetImageList( void ) const -->
<function name="wxWithImages::GetImageList,wxBookCtrlBase::GetImageList">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxImageList *"/>
<use-retval/>
<const/>
</function>
<!-- void wxFocusEvent::Skip(bool skip = true) -->
<!-- void wxSpinEvent::Skip(bool skip = true) -->
<!-- void wxEvent::Skip(bool skip = true) -->
Expand Down Expand Up @@ -16812,9 +16850,10 @@ wxItemKind kind = wxITEM_NORMAL) -->
<use-retval/>
<const/>
</function>
<!-- int wxToolbookEvent::GetId( void ) const -->
<!-- int wxEvent::GetId( void ) const -->
<!-- int wxCommandEvent::GetId( void ) const -->
<function name="wxEvent::GetId,wxCommandEvent::GetId">
<function name="wxEvent::GetId,wxCommandEvent::GetId,wxToolbookEvent::GetId">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="int"/>
Expand Down
Loading