diff -r f5a1e66df979 -r a47de9135b21 textinput/peninputcommonctrls/src/peninputdropdownlist/peninputlistmanager.cpp --- a/textinput/peninputcommonctrls/src/peninputdropdownlist/peninputlistmanager.cpp Fri Feb 19 23:09:27 2010 +0200 +++ b/textinput/peninputcommonctrls/src/peninputdropdownlist/peninputlistmanager.cpp Fri Mar 12 15:44:07 2010 +0200 @@ -31,6 +31,8 @@ #include "peninputlistmultirowrollwithicon.h" #include "peninputlistonerowrollwithicon.h" #include "peninputlistexpandablemultirowwithouticon.h" +#include "peninputlistmultirowwithouticonwithbubble.h" + #include // ======== MEMBER FUNCTIONS ======== @@ -72,6 +74,7 @@ delete iListExpandableMultiRowWithoutIcon; delete iListMultiRowRollWithIconWithBubble; delete iListOneRowRollWithIconWithBubble; + delete iListMultiRowWithoutIconWithBubble; } // ----------------------------------------------------------------------------- @@ -95,6 +98,7 @@ iListExpandableMultiRowWithoutIcon = CListExpandableMultiRowWithoutIcon::NewL(this, aContext); iListMultiRowRollWithIconWithBubble = CListMultiRowRollWithIconWithBubble::NewL(this, aContext); iListOneRowRollWithIconWithBubble = CListOneRowRollWithIconWithBubble::NewL(this, aContext); + iListMultiRowWithoutIconWithBubble = CListMultiRowWithoutIconWithBubble::NewL(this, aContext); } // ----------------------------------------------------------------------------- @@ -117,6 +121,7 @@ iListExpandableMultiRowWithoutIcon->SizeChanged(); iListMultiRowRollWithIconWithBubble->SizeChanged(); iListOneRowRollWithIconWithBubble->SizeChanged(); + iListMultiRowWithoutIconWithBubble->SizeChanged(); } // ----------------------------------------------------------------------------- @@ -139,6 +144,7 @@ iListExpandableMultiRowWithoutIcon->Move(aOffset); iListMultiRowRollWithIconWithBubble->Move(aOffset); iListOneRowRollWithIconWithBubble->Move(aOffset); + iListMultiRowWithoutIconWithBubble->Move(aOffset); // Move all candidates for ( TInt i=0; iCandidateCount(); i++ ) @@ -281,6 +287,11 @@ { return iListMultiRowRollWithIconWithBubble; } + +CList* CListManager::ListMultiRowWithoutIconWithBubble() const + { + return iListMultiRowWithoutIconWithBubble; + } void CListManager::ResetStatus() {