, m_mostVisitedButton(nullptr)
, m_bookmarkGengrid(nullptr)
, m_bookmarkManagerButton(nullptr)
+ , m_after_history_thumb(false)
, m_parentFocusChain(nullptr)
, m_bookmark_item_class(nullptr)
, m_detailPopup(this)
- , m_after_history_thumb(false)
{
BROWSER_LOGD("%s:%d %s", __FILE__, __LINE__, __func__);
edjFilePath = edjFilePathUrlHistoryList = EDJE_DIR;
prepareUrlsVector(editedUrl, matchedEntries);
m_itemUrlFirst = m_itemUrlLast = nullptr;
- Elm_Object_Item* itemAppended;
+ Elm_Object_Item* itemAppended = nullptr;
for(auto it : m_readyUrlPairs) {
itemAppended = elm_genlist_item_append(m_genlist, m_historyItemClass,
it.get(), nullptr, ELM_GENLIST_ITEM_NONE, GenlistManagerCallbacks::_item_selected, it.get());
{
if (m_itemUrlLast) {
m_itemSpaceFirst = m_itemSpaceLast = nullptr;
- Elm_Object_Item* itemAppended;
+ Elm_Object_Item* itemAppended = nullptr;
for (auto i = 0; i < HISTORY_ITEMS_VISIBLE_MAX; ++i) {
// append spaces to the last url item, so they can be easily cleared
itemAppended = elm_genlist_item_append(m_genlist,
m_layout = elm_layout_add(parentLayout);
elm_layout_file_set(m_layout, m_edjFilePath.c_str(), "url_history_list");
- Evas_Object* widgetList = m_genlistListManager->createWidget(m_layout);
+ m_genlistListManager->createWidget(m_layout);
}
void UrlHistoryList::onURLEntryEditedByUser(const string& editedUrl,