diff -r 41ebde60981f -r 271e901a9423 creator/engine/src/creator_accesspoint.cpp --- a/creator/engine/src/creator_accesspoint.cpp Fri May 14 15:15:12 2010 +0300 +++ b/creator/engine/src/creator_accesspoint.cpp Fri May 14 16:10:39 2010 +0300 @@ -20,8 +20,8 @@ #include "creator_accesspoint.h" #include "creator_traces.h" -#include -#include +#include +#include #include "enginewrapper.h" static const TInt KAccessPointsFieldLength = 128; @@ -188,20 +188,22 @@ //---------------------------------------------------------------------------- -TBool CCreatorAccessPoints::AskDataFromUserL(TInt aCommand, TInt& aNumberOfEntries) +TBool CCreatorAccessPoints::AskDataFromUserL(TInt aCommand) { LOGSTRING("Creator: CCreatorAccessPoints::AskDataFromUserL"); - + + CCreatorModuleBase::AskDataFromUserL( aCommand );//ignore retval + if( aCommand == ECmdDeleteIAPs ) { - return iEngine->GetEngineWrapper()->YesNoQueryDialog(_L("Delete all Access Points?") ); + return iEngine->GetEngineWrapper()->YesNoQueryDialog(_L("Delete all Access Points?"), this, ECreatorModuleDelete ); } else if( aCommand == ECmdDeleteCreatorIAPs ) { - return iEngine->GetEngineWrapper()->YesNoQueryDialog(_L("Delete all Access Points created with Creator?") ); + return iEngine->GetEngineWrapper()->YesNoQueryDialog(_L("Delete all Access Points created with Creator?"), this, ECreatorModuleDelete ); } - return iEngine->GetEngineWrapper()->EntriesQueryDialog(aNumberOfEntries, _L("How many entries to create?")); + return iEngine->GetEngineWrapper()->EntriesQueryDialog(&iEntriesToBeCreated, _L("How many entries to create?"), EFalse, this, ECreatorModuleStart ); }