Esempio n. 1
0
void action::hide()
{
	if(hidden_)
		return;
	hidden_ = true;
	do_hide();
}
Esempio n. 2
0
void ArticleToolTip::hide_later()
{
    if (isVisible())
    {
        QTimer::singleShot(20, this, SLOT(do_hide()));

#if !defined(NDEBUG) && 0
    cout << "hideLater" << endl;
#endif
    }
}