// show/hide the caret (should be called by wxWindow when needed):
// Show() must be called as many times as Hide() + 1 to make the caret
// visible
- virtual void Show(bool show = TRUE)
+ virtual void Show(bool show = true)
{
if ( show )
{
DoHide();
}
}
- virtual void Hide() { Show(FALSE); }
+ virtual void Hide() { Show(false); }
// blink time is measured in milliseconds and is the time elapsed
// between 2 inversions of the caret (blink time of the caret is common
m_width = width;
m_height = height;
- return TRUE;
+ return true;
}
// pure virtuals to implement in the derived class
wxCaretSuspend(wxWindow *win)
{
m_caret = win->GetCaret();
- m_show = FALSE;
+ m_show = false;
if ( m_caret && m_caret->IsVisible() )
{
m_caret->Hide();
- m_show = TRUE;
+ m_show = true;
}
}