CComponents: rename hide() to hideCC()

There are too many name conflicts with hide-members in other classes.
This commit is contained in:
2013-10-24 21:39:04 +02:00
parent f7798affc6
commit 6ee7fac1a5
26 changed files with 58 additions and 58 deletions

View File

@@ -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;