mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-11-16 07:48:07 +01:00
add static utility function
This commit is contained in:
parent
72ad619ee8
commit
56536417d3
2 changed files with 11 additions and 2 deletions
|
@ -32,9 +32,14 @@ extern "C" {
|
|||
class CXWAskDlg : public CEikDialog
|
||||
{
|
||||
public:
|
||||
static TBool DoAskDlg( MPFORMAL XWStreamCtxt* aStream, TBool aKillStream );
|
||||
static TBool DoAskDlg( MPFORMAL TBuf16<128>* aMessage );
|
||||
|
||||
~CXWAskDlg();
|
||||
|
||||
private:
|
||||
CXWAskDlg( MPFORMAL XWStreamCtxt* aStream, TBool aKillStream );
|
||||
CXWAskDlg( MPFORMAL TBuf16<128>* aMessage);
|
||||
~CXWAskDlg();
|
||||
|
||||
private:
|
||||
TBool OkToExitL( TInt aKeyCode );
|
||||
|
|
|
@ -51,9 +51,13 @@ class TGameInfoBuf
|
|||
class CXWGameInfoDlg : public CEikDialog /* CEikForm instead? */
|
||||
{
|
||||
public:
|
||||
CXWGameInfoDlg( MPFORMAL TGameInfoBuf* aGib, TBool aNewGame );
|
||||
static TBool DoGameInfoDlgL( MPFORMAL TGameInfoBuf* aGib, TBool aNewGame );
|
||||
|
||||
~CXWGameInfoDlg();
|
||||
|
||||
private:
|
||||
CXWGameInfoDlg( MPFORMAL TGameInfoBuf* aGib, TBool aNewGame );
|
||||
|
||||
private:
|
||||
void PreLayoutDynInitL();
|
||||
void HandleControlStateChangeL( TInt aControlId );
|
||||
|
|
Loading…
Reference in a new issue