- bouquetlist: fix initialisation of empty sting

This commit is contained in:
svenhoefer
2016-12-07 16:46:24 +01:00
parent 0dc0789de8
commit 8be61c8763

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);
} }