/** * Create a list box item with the given column values. */ void CSettingList::CreateListBoxItemL( TDes& aBuffer, const TDesC& aMainText, const TDesC& aSecondaryText ) { _LIT ( KStringHeader, "\t%S\t%S" ); aBuffer.Format( KStringHeader(), &aMainText, &aSecondaryText ); }
/** * Create a list box item with the given column values. */ void CNPRListBox::CreateListBoxItemL( TDes& aBuffer, TInt aIconIndex, const TDesC& aMainText ) { aBuffer.Format( KStringHeader(), aIconIndex, &aMainText ); }