mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-07 05:24:46 +01:00
clean up TDesc usage
This commit is contained in:
parent
29e42189ff
commit
04424e8294
1 changed files with 3 additions and 5 deletions
|
@ -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 )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue