Was bad idea to rename. Other Classes can also inherit this. See CMenuTarget
This commit is contained in:
2013-10-25 17:21:00 +02:00
parent ca22cb9241
commit 6dd1da0628
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->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;