bouquetlist: fix initialisation of empty sting

Origin commit data
------------------
Branch: ni/coolstream
Commit: 8be61c8763
Author: vanhofen <vanhofen@gmx.de>
Date: 2016-12-07 (Wed, 07 Dec 2016)

Origin message was:
------------------
- bouquetlist: fix initialisation of empty sting

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2016-12-07 16:46:24 +01:00
parent 5428d87a23
commit 6669c9d530

View File

@@ -690,7 +690,7 @@ void CBouquetList::paintItem(int pos)
void CBouquetList::paintHead() void CBouquetList::paintHead()
{ {
std::string icon = ""; std::string icon("");
CComponentsHeader header(x, y, width, theight, name, icon, CComponentsHeader::CC_BTN_LEFT | CComponentsHeader::CC_BTN_RIGHT | CComponentsHeader::CC_BTN_MENU); CComponentsHeader header(x, y, width, theight, name, icon, CComponentsHeader::CC_BTN_LEFT | CComponentsHeader::CC_BTN_RIGHT | CComponentsHeader::CC_BTN_MENU);
header.paint(CC_SAVE_SCREEN_NO); header.paint(CC_SAVE_SCREEN_NO);
} }