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: add support for more interfaces #6028

Merged
merged 4 commits into from
Feb 24, 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
35 changes: 10 additions & 25 deletions cfg/wxwidgets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16137,7 +16137,8 @@ wxItemKind kind = wxITEM_NORMAL) -->
<!-- virtual wxString wxTextEntry::GetValue ( ) const -->
<!-- virtual wxString wxTextCtrl::GetStringSelection ( ) const -->
<!-- virtual wxString wxTextCtrl::GetValue ( ) const -->
<function name="wxTextEntry::GetStringSelection,wxTextEntry::GetValue,wxTextCtrl::GetStringSelection,wxTextCtrl::GetValue">
<!-- virtual wxString wxComboBox::GetStringSelection ( ) const -->
<function name="wxTextEntry::GetStringSelection,wxTextEntry::GetValue,wxTextCtrl::GetStringSelection,wxTextCtrl::GetValue,wxComboBox::GetStringSelection">
<noreturn>false</noreturn>
<returnValue type="wxString"/>
<use-retval/>
Expand Down Expand Up @@ -16439,7 +16440,11 @@ wxItemKind kind = wxITEM_NORMAL) -->
</function>
<!-- int wxRect::GetWidth( void ) const -->
<!-- int wxRect::GetHeight( void ) const -->
<function name="wxRect::GetWidth,wxRect::GetHeight">
<!-- int wxRect::GetX( void ) const -->
<!-- int wxRect::GetY( void ) const -->
<!-- int wxRect::GetLeft(void ) const -->
<!-- int wxRect::GetRight( void ) const -->
<function name="wxRect::GetWidth,wxRect::GetHeight,wxRect::GetX,wxRect::GetY,wxRect::GetLeft,wxRect::GetRight">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="int"/>
Expand All @@ -16455,8 +16460,9 @@ wxItemKind kind = wxITEM_NORMAL) -->
<use-retval/>
<const/>
</function>
<!-- bool wxFrame::Layout( void ) -->
<!-- bool wxWindowBase::Layout( void ) -->
<function name="wxWindowBase::Layout">
<function name="wxWindowBase::Layout,wxFrame::Layout">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="bool"/>
Expand Down Expand Up @@ -16495,31 +16501,10 @@ wxItemKind kind = wxITEM_NORMAL) -->
<pure/>
</function>
<!-- wxPoint wxRect::GetTopLeft( void ) const -->
<function name="wxRect::GetTopLeft">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxPoint"/>
<use-retval/>
<const/>
</function>
<!-- wxPoint wxRect::GetTopRight( void ) const -->
<function name="wxRect::GetTopRight">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxPoint"/>
<use-retval/>
<const/>
</function>
<!-- wxPoint wxRect::GetBottomLeft( void ) const -->
<function name="wxRect::GetBottomLeft">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxPoint"/>
<use-retval/>
<const/>
</function>
<!-- wxPoint wxRect::GetBottomRight( void ) const -->
<function name="wxRect::GetBottomRight">
<function name="wxRect::GetTopRight,wxRect::GetBottomLeft,wxRect::GetBottomRight,wxRect::GetTopLeft">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxPoint"/>
Expand Down
Loading