diff -r 924385140d98 -r c2c61fdca848 coreapplicationuis/accfwuinotifier/src/AccFwUiNotifierProxy.cpp --- a/coreapplicationuis/accfwuinotifier/src/AccFwUiNotifierProxy.cpp Tue Aug 31 15:24:25 2010 +0300 +++ b/coreapplicationuis/accfwuinotifier/src/AccFwUiNotifierProxy.cpp Wed Sep 01 12:24:48 2010 +0100 @@ -1,5 +1,5 @@ /* -* Copyright (c) 2002-2010 Nokia Corporation and/or its subsidiary(-ies). +* Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * This component and the accompanying materials are made available * under the terms of "Eclipse Public License v1.0" @@ -19,7 +19,9 @@ // INCLUDE FILES #include #include + #include "AccFwUiNoteNotifier.h" +#include "AccFwUiDialogNotifier.h" #include "acc_debug.h" // EXTERNAL DATA STRUCTURES @@ -28,7 +30,7 @@ // CONSTANTS -const TInt KNumberOfImplementations(1); +const TInt KNumberOfImplementations(2); // MACROS @@ -49,10 +51,15 @@ API_TRACE_( "[AccFW: ACCFWUINOTIFIER] CreateNotifiersL() - enter" ); MEikSrvNotifierBase2* note = CAccFwUiNoteNotifier::NewL(); CleanupStack::PushL( note ); - + + MEikSrvNotifierBase2* dialog = CAccFwUiDialogNotifier::NewL(); + CleanupStack::PushL( dialog ); + aSubjects->AppendL( note ); - - CleanupStack::Pop( note ); + aSubjects->AppendL( dialog ); + + CleanupStack::Pop( dialog ); + CleanupStack::Pop( note ); API_TRACE_( "[AccFW: ACCFWUINOTIFIER] CreateNotifiersL() - return void" ); }