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:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user