CComponents: rename hide() to hideCC()

There are too many name conflicts with hide-members in other classes.


Origin commit data
------------------
Commit: 6ee7fac1a5
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-10-24 (Thu, 24 Oct 2013)
This commit is contained in:
2013-10-24 21:39:04 +02:00
parent 41d131eb32
commit 2649ca147a
26 changed files with 58 additions and 58 deletions

View File

@@ -43,7 +43,7 @@ CComponentsItemBox::CComponentsItemBox()
CComponentsItemBox::~CComponentsItemBox()
{
hide();
hideCC();
clearElements();
clearSavedScreen();
clear();
@@ -213,7 +213,7 @@ void CComponentsItemBox::refreshElement(size_t index, const std::string& element
case CC_ITEMBOX_PICTURE:
pic = static_cast<CComponentsPicture*>(v_element_data[index].handler1);
if (pic != NULL) {
pic->hide();
pic->hideCC();
delete pic;
}
v_element_data[index].element = element;
@@ -240,7 +240,7 @@ void CComponentsItemBox::paintImage(size_t index, bool newElement)
if ((newElement) || (pic == NULL)) {
if (pic != NULL) {
pic->hide();
pic->hideCC();
delete pic;
pic = NULL;
}
@@ -287,7 +287,7 @@ void CComponentsItemBox::paintText(size_t index, bool newElement)
if ((newElement) || (textbox == NULL)) {
if (textbox != NULL) {
textbox->hide();
textbox->hideCC();
delete textbox;
textbox = NULL;
}