clean up TDesc usage

This commit is contained in:
ehouse 2005-01-22 22:46:27 +00:00
parent 29e42189ff
commit 04424e8294

View file

@ -47,9 +47,8 @@ CXWBlankSelDlg::PreLayoutDynInitL()
TInt i;
for ( i = 0; i < iNTiles; ++i ) {
TBuf8<4> buf8( iTexts[i] );
TBuf16<4> buf16;
buf16.Copy( buf8 );
buf16.Copy( TPtrC8(iTexts[i]) );
facesList->AppendL( buf16 );
}
@ -59,7 +58,7 @@ CXWBlankSelDlg::PreLayoutDynInitL()
}
TBool
CXWBlankSelDlg::OkToExitL( TInt aKeyCode )
CXWBlankSelDlg::OkToExitL( TInt /*aKeyCode*/ )
{
CEikChoiceList* list = static_cast<CEikChoiceList*>
(Control(ESelBlankChoice));
@ -67,8 +66,7 @@ CXWBlankSelDlg::OkToExitL( TInt aKeyCode )
return ETrue;
} // OkToExitL
/* static */
void
/* static */ void
CXWBlankSelDlg::UsePickTileDialogL( const XP_UCHAR4* texts, TInt aNTiles,
TInt* resultP )
{