CComponentsHeader: rename some members for plausible usage in subclasses

Some members are usable in subclasses, but  current names could be not
suitable or not  plausible with respect to the name of subclass.
This commit is contained in:
2013-05-27 11:57:17 +02:00
parent 40a77ade7c
commit 8e46f63900
4 changed files with 48 additions and 46 deletions

View File

@@ -106,11 +106,11 @@ void CComponentsWindow::initHeader()
ccw_head->setXPos(0);
ccw_head->setYPos(0);
ccw_head->setWidth(width);
ccw_head->setHeaderIcon(ccw_icon_name);
ccw_head->setHeaderText(ccw_caption);
ccw_head->initCCHeaderItems();
ccw_head->setIcon(ccw_icon_name);
ccw_head->setCaption(ccw_caption);
ccw_head->initCCItems();
ccw_start_y = ccw_head->getHeight();
ccw_head->setHeaderDefaultButtons(ccw_buttons);
ccw_head->setDefaultButtons(ccw_buttons);
}
}