wxwidgets.cfg: Added support for more interfaces
This commit is contained in:
parent
6f2879a59b
commit
2e8f0b99f0
|
@ -5008,13 +5008,6 @@
|
|||
<const/>
|
||||
<arg nr="1" direction="in"/>
|
||||
</function>
|
||||
<!-- http://docs.wxwidgets.org/trunk/classwx_string.html#ab20a87ca731a52c36ec674dae2213ad8 -->
|
||||
<!-- void wxString::LowerCase() -->
|
||||
<function name="wxString::LowerCase">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<warn severity="style">This is the same as 'wxString::MakeLower' and is kept for wxWidgets 1.xx compatibility. You should not use it in new code.</warn>
|
||||
</function>
|
||||
<!-- http://docs.wxwidgets.org/trunk/group__group__funcmacro__log.html#gaec3640fa3b46c970ff0c86fe354e59ff -->
|
||||
<!-- unsigned long wxSysErrorCode() -->
|
||||
<function name="wxSysErrorCode">
|
||||
|
@ -9438,6 +9431,7 @@
|
|||
<arg nr="2" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<warn severity="style">This is a wxWidgets 1.xx compatibility function. Use 'wxString::Mid' in new applications instead.</warn>
|
||||
</function>
|
||||
<!-- wxString wxString::substr(size_t nStart = 0, size_t nLen = npos) const -->
|
||||
<function name="wxString::substr">
|
||||
|
@ -10258,9 +10252,7 @@
|
|||
</function>
|
||||
<!-- int wxString::Find (wxUniChar ch, bool fromEnd=false) const -->
|
||||
<!-- int wxString::Find (const wxString &sub) const -->
|
||||
<!-- int wxString::First (const wxUniChar ch) const -->
|
||||
<!-- int wxString::First (const wxString &sub) const -->
|
||||
<function name="wxString::Find,wxString::First">
|
||||
<function name="wxString::Find">
|
||||
<use-retval/>
|
||||
<const/>
|
||||
<leak-ignore/>
|
||||
|
@ -10268,6 +10260,27 @@
|
|||
<noreturn>false</noreturn>
|
||||
<arg nr="any" direction="in"/>
|
||||
</function>
|
||||
<!-- int wxString::First (const wxUniChar ch) const -->
|
||||
<!-- int wxString::First (const wxString &sub) const -->
|
||||
<function name="wxString::First">
|
||||
<use-retval/>
|
||||
<const/>
|
||||
<leak-ignore/>
|
||||
<returnValue type="int"/>
|
||||
<noreturn>false</noreturn>
|
||||
<arg nr="any" direction="in"/>
|
||||
<warn severity="style">This is a wxWidgets 1.xx compatibility function. Use 'wxString::Find' in new applications instead.</warn>
|
||||
</function>
|
||||
<!-- int wxString::Freq(wxUniChar ch) const -->
|
||||
<function name="wxString::Freq">
|
||||
<use-retval/>
|
||||
<const/>
|
||||
<leak-ignore/>
|
||||
<returnValue type="int"/>
|
||||
<noreturn>false</noreturn>
|
||||
<arg nr="any" direction="in"/>
|
||||
<warn severity="style">This is a wxWidgets 1.xx compatibility function. You should not use it in new code.</warn>
|
||||
</function>
|
||||
<!-- size_t wxString::find(const wxString & str, size_t nStart = 0) const -->
|
||||
<!-- size_t wxString::find(const char * sz , size_t nStart = 0, size_t n = npos) const -->
|
||||
<!-- size_t wxString::find(const wchar_t * sz , size_t nStart = 0, size_t n = npos) const -->
|
||||
|
@ -10705,6 +10718,45 @@
|
|||
<leak-ignore/>
|
||||
<arg nr="1" direction="in"/>
|
||||
</function>
|
||||
<!--wxString& wxString::Remove(size_t pos) -->
|
||||
<!--wxString& wxString::Remove(size_t pos, size_t len) -->
|
||||
<function name="wxString::Remove">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="wxString &"/>
|
||||
<leak-ignore/>
|
||||
<use-retval/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2" default="0" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<warn severity="style">This is a wxWidgets 1.xx compatibility function. Use 'wxString::Truncate' in new applications instead.</warn>
|
||||
</function>
|
||||
<!--wxString& wxString::Truncate(size_t len) -->
|
||||
<function name="wxString::Truncate">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="wxString &"/>
|
||||
<leak-ignore/>
|
||||
<use-retval/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!--void wxString::UpperCase(void) -->
|
||||
<function name="wxString::UpperCase">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<leak-ignore/>
|
||||
<warn severity="style">This is a wxWidgets 1.xx compatibility function. Use 'wxString::MakeUpper' in new applications instead.</warn>
|
||||
</function>
|
||||
<!--void wxString::LowerCase(void) -->
|
||||
<function name="wxString::LowerCase">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<leak-ignore/>
|
||||
<warn severity="style">This is a wxWidgets 1.xx compatibility function. Use 'wxString::MakeLower' in new applications instead.</warn>
|
||||
</function>
|
||||
<!-- static wxUniChar wxFileName::GetPathSeparator(wxPathFormat format = wxPATH_NATIVE) -->
|
||||
<function name="wxFileName::GetPathSeparator">
|
||||
<noreturn>false</noreturn>
|
||||
|
|
Loading…
Reference in New Issue