coreapplicationuis/accfwuinotifier/src/AccFwUiNotifierProxy.cpp
branchRCL_3
changeset 62 924385140d98
parent 0 2e3d3ce01487
child 63 c2c61fdca848
--- a/coreapplicationuis/accfwuinotifier/src/AccFwUiNotifierProxy.cpp	Thu Aug 19 10:05:08 2010 +0300
+++ b/coreapplicationuis/accfwuinotifier/src/AccFwUiNotifierProxy.cpp	Tue Aug 31 15:24:25 2010 +0300
@@ -1,5 +1,5 @@
 /*
-* Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies). 
+* Copyright (c) 2002-2010 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,9 +19,7 @@
 // INCLUDE FILES
 #include <e32std.h>
 #include <ecom/implementationproxy.h>
-
 #include "AccFwUiNoteNotifier.h"
-#include "AccFwUiDialogNotifier.h"
 #include "acc_debug.h"
 
 // EXTERNAL DATA STRUCTURES
@@ -30,7 +28,7 @@
 
 // CONSTANTS
 
-const TInt KNumberOfImplementations(2);
+const TInt KNumberOfImplementations(1);
 
 // MACROS
 
@@ -51,15 +49,10 @@
     API_TRACE_( "[AccFW: ACCFWUINOTIFIER] CreateNotifiersL() - enter" );
     MEikSrvNotifierBase2* note = CAccFwUiNoteNotifier::NewL();
     CleanupStack::PushL( note );
-    
-    MEikSrvNotifierBase2* dialog = CAccFwUiDialogNotifier::NewL();
-    CleanupStack::PushL( dialog );        
-    
+          
     aSubjects->AppendL( note );
-    aSubjects->AppendL( dialog );
-    
-    CleanupStack::Pop( dialog );
-    CleanupStack::Pop( note );
+     
+      CleanupStack::Pop( note );
     API_TRACE_( "[AccFW: ACCFWUINOTIFIER] CreateNotifiersL() - return void" );
     
     }