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 some wxStringTokenizer functions #6056

Merged
merged 1 commit into from
Feb 28, 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
31 changes: 31 additions & 0 deletions cfg/wxwidgets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6125,6 +6125,29 @@
<arg nr="2" direction="in" default="wxDEFAULT_DELIMITERS"/>
<arg nr="3" direction="in" default="wxTOKEN_DEFAULT"/>
</function>
<!-- wxStringTokenizerMode wxStringTokenizer::GetMode( void ) const -->
<function name="wxStringTokenizer::GetMode">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxStringTokenizerMode"/>
<use-retval/>
<const/>
</function>
<!-- wxString wxStringTokenizer::GetNextToken( void ) -->
<function name="wxStringTokenizer::GetNextToken">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxString"/>
<use-retval/>
</function>
<!-- size_t wxStringTokenizer::GetPosition( void ) const -->
<function name="wxStringTokenizer::GetPosition">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="size_t"/>
<use-retval/>
<const/>
</function>
<!-- virtual void wxTextEntry::SetSelection (long from, long to) -->
<!-- virtual void wxTextEntry::SetSelection (int n) -->
<!-- virtual void wxRadioBox::SetSelection (int n) -->
Expand Down Expand Up @@ -15226,6 +15249,14 @@ wxItemKind kind = wxITEM_NORMAL) -->
<returnValue type="wxMenuItem *"/>
<use-retval/>
</function>
<!-- const wxScopedCharBuffer wxString::ToUTF8( void ) const -->
<function name="wxString::ToUTF8">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="const wxScopedCharBuffer"/>
<use-retval/>
<const/>
</function>
<!-- size_t wxNotebook::GetPageCount ( void ) const -->
<!-- size_t wxListbook::GetPageCount ( void ) const -->
<!-- size_t wxPropertyGridManager::GetPageCount ( void ) const -->
Expand Down
Loading