thx for the reply.
i can't see how this patch could break the API and ABI. the original function goes like this:
int EditorManager::GetEditorsCount()
{
return m_pNotebook->GetPageCount();
}
where the underlying function is defined as so:
size_t wxAuiNotebook::GetPageCount() const;
so in its present state the function already returns a size_t.
or do you refer to the const breaking any existing code? ???
it does compile without any errors, warnings or misbehavior on my machine...
and the other change? adding the function returning a vector of the built in editors?