Typo in doc, wxCHECK2_MSG replaced with wxCHECK_MSG
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8182 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
2f20fe2222
commit
601c163b1c
@ -35,7 +35,7 @@ wxPython is a Python package that can be imported at runtime that
|
|||||||
includes a collection of Python modules and an extension module
|
includes a collection of Python modules and an extension module
|
||||||
(native code). It provides a series of Python classes that mirror (or
|
(native code). It provides a series of Python classes that mirror (or
|
||||||
shadow) many of the wxWindows GUI classes. This extension module
|
shadow) many of the wxWindows GUI classes. This extension module
|
||||||
attempts to mirror the class heirarchy of wxWindows as closely as
|
attempts to mirror the class hierarchy of wxWindows as closely as
|
||||||
possible. This means that there is a wxFrame class in wxPython that
|
possible. This means that there is a wxFrame class in wxPython that
|
||||||
looks, smells, tastes and acts almost the same as the wxFrame class in
|
looks, smells, tastes and acts almost the same as the wxFrame class in
|
||||||
the C++ version.
|
the C++ version.
|
||||||
|
@ -2190,7 +2190,7 @@ bool wxGenericTreeCtrl::GetBoundingRect(const wxTreeItemId& item,
|
|||||||
wxRect& rect,
|
wxRect& rect,
|
||||||
bool textOnly) const
|
bool textOnly) const
|
||||||
{
|
{
|
||||||
wxCHECK2_MSG( item.IsOk(), FALSE, _T("invalid item in wxGenericTreeCtrl::GetBoundingRect") );
|
wxCHECK_MSG( item.IsOk(), FALSE, _T("invalid item in wxGenericTreeCtrl::GetBoundingRect") );
|
||||||
|
|
||||||
wxGenericTreeItem *i = (wxGenericTreeItem*) item.m_pItem;
|
wxGenericTreeItem *i = (wxGenericTreeItem*) item.m_pItem;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user