mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 00:41:17 +02:00
CComponentsHeader: move init members into its own member
This commit is contained in:
@@ -501,6 +501,7 @@ class CComponentsHeader : public CComponentsForm
|
|||||||
void initCCHeaderIcon();
|
void initCCHeaderIcon();
|
||||||
void initCCHeaderText();
|
void initCCHeaderText();
|
||||||
void initCCHeaderButtons();
|
void initCCHeaderButtons();
|
||||||
|
void initCCHItems();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void initVarHeader();
|
void initVarHeader();
|
||||||
|
@@ -1832,14 +1832,8 @@ void CComponentsHeader::initCCHeaderText()
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CComponentsHeader::paint(bool do_save_bg)
|
void CComponentsHeader::initCCHItems()
|
||||||
{
|
{
|
||||||
//paint body
|
|
||||||
paintInit(do_save_bg);
|
|
||||||
|
|
||||||
//clean up first possible old item objects, includes delete and clean up vector
|
|
||||||
clearCCItems();
|
|
||||||
|
|
||||||
//init icon
|
//init icon
|
||||||
initCCHeaderIcon();
|
initCCHeaderIcon();
|
||||||
|
|
||||||
@@ -1856,6 +1850,18 @@ void CComponentsHeader::paint(bool do_save_bg)
|
|||||||
addCCItem(cch_text_obj); //text
|
addCCItem(cch_text_obj); //text
|
||||||
if (cch_btn_obj)
|
if (cch_btn_obj)
|
||||||
addCCItem(cch_btn_obj); //buttons
|
addCCItem(cch_btn_obj); //buttons
|
||||||
|
}
|
||||||
|
|
||||||
|
void CComponentsHeader::paint(bool do_save_bg)
|
||||||
|
{
|
||||||
|
//paint body
|
||||||
|
paintInit(do_save_bg);
|
||||||
|
|
||||||
|
//clean up first possible old item objects, includes delete and clean up vector
|
||||||
|
clearCCItems();
|
||||||
|
|
||||||
|
//init default header ccitems
|
||||||
|
initCCHItems();
|
||||||
|
|
||||||
//paint
|
//paint
|
||||||
paintCCItems();
|
paintCCItems();
|
||||||
|
Reference in New Issue
Block a user