wxwidgets.cfg: simplify _()-macro.

This commit is contained in:
orbitcowboy 2020-02-17 14:22:19 +01:00
parent 3b20684aca
commit 1cf7bdaed8
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
<define name="wxTRANSLATE(str)" value="str"/>
<!-- http://docs.wxwidgets.org/trunk/group__group__funcmacro__string.html#ga8a02b8875a521df57263a9e6f090f2d0 -->
<!-- const wxString& _(const wxString & string) // Macro that expands to wxGetTranslation -->
<define name="_(str)" value="wxGetTranslation(str)"/>
<define name="_(str)" value="str"/>
<define name="wxLongLong_t" value="int64_t"/>
<define name="wxExit" value="exit"/>
<!-- wxVector<T> is a template class which implements most of the std::vector functions -->