mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
revert 6ee7fac1a5
Was bad idea to rename. Other Classes can also inherit this. See CMenuTarget
This commit is contained in:
@@ -1083,7 +1083,7 @@ void CMenuWidget::paintHint(int pos)
|
||||
if (savescreen)
|
||||
details_line->restore();
|
||||
else
|
||||
details_line->hideCC();
|
||||
details_line->hide();
|
||||
}
|
||||
/* clear info box */
|
||||
if (info_box != NULL) {
|
||||
@@ -1091,7 +1091,7 @@ void CMenuWidget::paintHint(int pos)
|
||||
if (savescreen)
|
||||
info_box->restore();
|
||||
else
|
||||
info_box->hideCC();
|
||||
info_box->hide();
|
||||
}
|
||||
}
|
||||
hint_painted = false;
|
||||
@@ -1099,10 +1099,10 @@ void CMenuWidget::paintHint(int pos)
|
||||
if (hint_painted) {
|
||||
/* clear detailsline line */
|
||||
if (details_line)
|
||||
details_line->hideCC();
|
||||
details_line->hide();
|
||||
/* clear info box */
|
||||
if ((info_box) && (pos == -1))
|
||||
info_box->hideCC(true);
|
||||
info_box->hide(true);
|
||||
hint_painted = false;
|
||||
}
|
||||
if (pos < 0)
|
||||
@@ -1116,11 +1116,11 @@ void CMenuWidget::paintHint(int pos)
|
||||
if (savescreen)
|
||||
#endif
|
||||
if (info_box)
|
||||
info_box->hideCC(false);
|
||||
info_box->hide(false);
|
||||
#if 0
|
||||
info_box->restore();
|
||||
else
|
||||
info_box->hideCC();
|
||||
info_box->hide();
|
||||
}
|
||||
#endif
|
||||
return;
|
||||
|
Reference in New Issue
Block a user