1. bug fixes in wxCaret

2. wxPoint now has += and -=
3. Validate() takes "wxWindow *" (and not wxWindowBase) again


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2555 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-05-24 21:12:37 +00:00
parent 587ce561e1
commit 764a3a4906
4 changed files with 18 additions and 10 deletions

View File

@@ -96,12 +96,12 @@ public:
{
if ( show )
{
if ( ++m_countVisible > 0 )
if ( m_countVisible++ == 0 )
DoShow();
}
else
{
if ( --m_countVisible < 1 )
if ( --m_countVisible == 0 )
DoHide();
}
}