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 #6109

Merged
merged 1 commit into from
Mar 10, 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
29 changes: 29 additions & 0 deletions cfg/wxwidgets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7429,9 +7429,18 @@
<noreturn>false</noreturn>
<leak-ignore/>
<use-retval/>
<const/>
<returnValue type="wxCoord"/>
<warn severity="style">This function is deprecated and kept mostly for backwards compatibility. Please override 'GetMargins()' method instead in any new code.</warn>
</function>
<!-- wxPoint wxComboCtrl::GetMargins( ) const-->
<function name="wxComboCtrl::GetMargins">
<noreturn>false</noreturn>
<leak-ignore/>
<use-retval/>
<const/>
<returnValue type="wxPoint"/>
</function>
<!-- http://docs.wxwidgets.org/trunk/classwx_combo_ctrl.html#ae38353a81954d02af302ba103e984cb7 -->
<!-- void wxComboCtrl::HidePopup (bool generateEvent=false)-->
<function name="wxComboCtrl::HidePopup">
Expand Down Expand Up @@ -14285,6 +14294,26 @@ wxItemKind kind = wxITEM_NORMAL) -->
<not-uninit/>
</arg>
</function>
<!-- wxCoord wxMouseEvent::GetX( void ) const -->
<!-- wxCoord wxMouseEvent::GetY( void ) const -->
<!-- wxCoord wxMouseState::GetX( void ) const -->
<!-- wxCoord wxMouseState::GetY( void ) const -->
<function name="wxMouseEvent::GetX,wxMouseEvent::GetY,wxMouseState::GetY,wxMouseState::GetX">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxCoord"/>
<use-retval/>
<const/>
</function>
<!-- virtual wxString wxComboCtrl::GetValue( void ) const -->
<!-- virtual wxString wxOwnerDrawnComboBox::GetValue( void ) const -->
<function name="wxComboCtrl::GetValue,wxOwnerDrawnComboBox::GetValue">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxString"/>
<use-retval/>
<const/>
</function>
<!-- bool wxGridCellAttr::CanOverflow( void ) const -->
<function name="wxGridCellAttr::CanOverflow">
<noreturn>false</noreturn>
Expand Down
Loading