mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 10:21:04 +02:00
CProgressBar/CComponentsInfoBox: add missing value inits
Origin commit data
------------------
Branch: ni/coolstream
Commit: 0a7f7ab5a6
Author: Thilo Graf <dbt@novatux.de>
Date: 2017-06-15 (Thu, 15 Jun 2017)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -51,10 +51,10 @@ CComponentsInfoBox::CComponentsInfoBox( const int& x_pos,
|
|||||||
{
|
{
|
||||||
cc_item_type = CC_ITEMTYPE_TEXT_INFOBOX;
|
cc_item_type = CC_ITEMTYPE_TEXT_INFOBOX;
|
||||||
|
|
||||||
x = x_pos;
|
x = x_old = x_pos;
|
||||||
y = y_pos;
|
y = y_old = y_pos;
|
||||||
width = w;
|
width = width_old = w;
|
||||||
height = h;
|
height = height_old = h;
|
||||||
shadow = shadow_mode;
|
shadow = shadow_mode;
|
||||||
col_frame = color_frame;
|
col_frame = color_frame;
|
||||||
cc_enable_frame = true;
|
cc_enable_frame = true;
|
||||||
|
@@ -57,10 +57,10 @@ CProgressBar::CProgressBar( const int x_pos,
|
|||||||
cc_item_type = CC_ITEMTYPE_PROGRESSBAR;
|
cc_item_type = CC_ITEMTYPE_PROGRESSBAR;
|
||||||
|
|
||||||
//CComponents
|
//CComponents
|
||||||
x = x_pos;
|
x = x_old = x_pos;
|
||||||
y = y_pos;
|
y = y_old = y_pos;
|
||||||
width = w;
|
width = width_old = w;
|
||||||
height = h;
|
height = height_old = h;
|
||||||
|
|
||||||
col_frame = color_frame;
|
col_frame = color_frame;
|
||||||
col_body = color_body;
|
col_body = color_body;
|
||||||
|
Reference in New Issue
Block a user