mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
CComponents: rename hide() to hideCC()
There are too many name conflicts with hide-members in other classes.
This commit is contained in:
@@ -1083,7 +1083,7 @@ void CMenuWidget::paintHint(int pos)
|
||||
if (savescreen)
|
||||
details_line->restore();
|
||||
else
|
||||
details_line->hide();
|
||||
details_line->hideCC();
|
||||
}
|
||||
/* clear info box */
|
||||
if (info_box != NULL) {
|
||||
@@ -1091,7 +1091,7 @@ void CMenuWidget::paintHint(int pos)
|
||||
if (savescreen)
|
||||
info_box->restore();
|
||||
else
|
||||
info_box->hide();
|
||||
info_box->hideCC();
|
||||
}
|
||||
}
|
||||
hint_painted = false;
|
||||
@@ -1099,10 +1099,10 @@ void CMenuWidget::paintHint(int pos)
|
||||
if (hint_painted) {
|
||||
/* clear detailsline line */
|
||||
if (details_line)
|
||||
details_line->hide();
|
||||
details_line->hideCC();
|
||||
/* clear info box */
|
||||
if ((info_box) && (pos == -1))
|
||||
info_box->hide(true);
|
||||
info_box->hideCC(true);
|
||||
hint_painted = false;
|
||||
}
|
||||
if (pos < 0)
|
||||
@@ -1116,11 +1116,11 @@ void CMenuWidget::paintHint(int pos)
|
||||
if (savescreen)
|
||||
#endif
|
||||
if (info_box)
|
||||
info_box->hide(false);
|
||||
info_box->hideCC(false);
|
||||
#if 0
|
||||
info_box->restore();
|
||||
else
|
||||
info_box->hide();
|
||||
info_box->hideCC();
|
||||
}
|
||||
#endif
|
||||
return;
|
||||
|
Reference in New Issue
Block a user