From f7253e0465e3392dd9fa80ebe548a9f43776bbbf Mon Sep 17 00:00:00 2001 From: ehouse Date: Sat, 8 Jan 2005 18:09:32 +0000 Subject: [PATCH] add option to take a TBuf16 --- xwords4/symbian/inc/symaskdlg.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xwords4/symbian/inc/symaskdlg.h b/xwords4/symbian/inc/symaskdlg.h index ade40d686..2a103910d 100644 --- a/xwords4/symbian/inc/symaskdlg.h +++ b/xwords4/symbian/inc/symaskdlg.h @@ -33,13 +33,17 @@ class CXWAskDlg : public CEikDialog { public: CXWAskDlg( MPFORMAL XWStreamCtxt* aStream, TBool aKillStream ); + CXWAskDlg( MPFORMAL TBuf16<128>* aMessage); ~CXWAskDlg(); private: TBool OkToExitL( TInt aKeyCode ); void PreLayoutDynInitL(); + /* One or the other of these will be set/used */ XWStreamCtxt* iStream; + TBuf16<128>* iMessage; + TBool iKillStream; MPSLOT };