]> git.saurik.com Git - wxWidgets.git/commitdiff
Typo in doc, wxCHECK2_MSG replaced with wxCHECK_MSG
authorJulian Smart <julian@anthemion.co.uk>
Fri, 25 Aug 2000 09:37:16 +0000 (09:37 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 25 Aug 2000 09:37:16 +0000 (09:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8182 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/wxPython.tex
src/generic/treectlg.cpp

index 9a725ee0be05f91f47da8842fc9d665c5786d9b7..84c2a75c3d285d5439feab38f105eb526a5b128e 100644 (file)
@@ -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
 (native code). It provides a series of Python classes that mirror (or
 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
 looks, smells, tastes and acts almost the same as the wxFrame class in
 the C++ version.
index 4b45a0496c64a56cda4186d0f2dc9ed4fcf90c7a..77219b692b22574cb29340b8ee60400563f01bc6 100644 (file)
@@ -2190,7 +2190,7 @@ bool wxGenericTreeCtrl::GetBoundingRect(const wxTreeItemId& item,
                          wxRect& rect,
                          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;