browserui/browser/FeedsSrc/FeedsTopicContainer.cpp
changeset 37 481242ead638
parent 31 868cceedabd3
child 62 5a044f6358c2
equal deleted inserted replaced
33:97c9f46387be 37:481242ead638
   228 //
   228 //
   229 void CFeedsTopicContainer::HandleListBoxEventL(CEikListBox* /*aListBox*/, TListBoxEvent aEventType)
   229 void CFeedsTopicContainer::HandleListBoxEventL(CEikListBox* /*aListBox*/, TListBoxEvent aEventType)
   230     {
   230     {
   231     // An item was selected.
   231     // An item was selected.
   232     if ((aEventType == MEikListBoxObserver::EEventEnterKeyPressed) ||
   232     if ((aEventType == MEikListBoxObserver::EEventEnterKeyPressed) ||
   233         (aEventType == MEikListBoxObserver::EEventItemDoubleClicked))
   233         (aEventType == MEikListBoxObserver::EEventItemDoubleClicked) 
       
   234 #ifdef BRDO_SINGLE_CLICK_ENABLED_FF        
       
   235         || (aEventType == MEikListBoxObserver::EEventItemSingleClicked)
       
   236 #endif        
       
   237         )
   234         {
   238         {
   235         HandleOpenL();
   239         HandleOpenL();
   236         }
   240         }
   237     }
   241     }
   238 
   242