CComponentsHeader: fix possible build error with dangling-else

error: suggest explicit braces to avoid ambiguous 'else' [-Werror=dangling-else]

see commit: 02631f14ca902f9362e12a1ac1614be1719d40f8


Origin commit data
------------------
Branch: ni/coolstream
Commit: a8bb76eef4
Author: Thilo Graf <dbt@novatux.de>
Date: 2018-02-04 (Sun, 04 Feb 2018)



------------------
This commit was generated by Migit
This commit is contained in:
2018-02-04 20:09:22 +01:00
committed by vanhofen
parent 3bb57edaf0
commit 47186233b3

View File

@@ -308,7 +308,7 @@ void CComponentsHeader::initLogo()
* FIXME: Workaround to fix next item in case of wrong order of items.
*/
if (next_item){
if (next_item->getItemType() == CC_ITEMTYPE_FRM_ICONFORM)
if (next_item->getItemType() == CC_ITEMTYPE_FRM_ICONFORM){
/* either clock is present
* or in chanellist edit mode
* possible button */
@@ -316,6 +316,7 @@ void CComponentsHeader::initLogo()
next_item = cch_cl_obj;
else
next_item = cch_btn_obj;
}
}
/*