wxwidgets/include
Vadim Zeitlin bceace12b5 Use wxBaseArray instead of object arrays for wxAuiNotebook arrays
These classes can also be potentially used in the user code, as they are
used for the protected members of wxAuiTabContainer, so don't replace
them with just std::vector, but do, at least, use wxBaseArray template
for them instead of the macro-based object arrays.

Note that this required the check for the button presence in m_buttons
in wxAuiTabContainer::TabHitTest() as wxBaseArray::Index() relies on
object comparison, whereas the original version relied on object address
comparison, so keep it like this, even though we probably could compare
the buttons IDs instead (and, possibly, not compare anything at all but
just return the result of the button we found from ButtonHitTest()
directly).

Also document these container classes.
2023-04-12 18:09:48 +01:00
..
msvc/wx Link with lexilla library too in MSVS-specific wx/setup.h 2023-03-08 18:24:38 +00:00
wx Use wxBaseArray instead of object arrays for wxAuiNotebook arrays 2023-04-12 18:09:48 +01:00