add option to take a TBuf16

This commit is contained in:
ehouse 2005-01-08 18:09:32 +00:00
parent 473c2d5ed7
commit f7253e0465

View file

@ -33,13 +33,17 @@ class CXWAskDlg : public CEikDialog
{ {
public: public:
CXWAskDlg( MPFORMAL XWStreamCtxt* aStream, TBool aKillStream ); CXWAskDlg( MPFORMAL XWStreamCtxt* aStream, TBool aKillStream );
CXWAskDlg( MPFORMAL TBuf16<128>* aMessage);
~CXWAskDlg(); ~CXWAskDlg();
private: private:
TBool OkToExitL( TInt aKeyCode ); TBool OkToExitL( TInt aKeyCode );
void PreLayoutDynInitL(); void PreLayoutDynInitL();
/* One or the other of these will be set/used */
XWStreamCtxt* iStream; XWStreamCtxt* iStream;
TBuf16<128>* iMessage;
TBool iKillStream; TBool iKillStream;
MPSLOT MPSLOT
}; };