phoneapp/phonemediatorcenter/src/cphonemediatormessagefactory.cpp
branchRCL_3
changeset 62 5266b1f337bd
parent 61 41a7f70b3818
--- a/phoneapp/phonemediatorcenter/src/cphonemediatormessagefactory.cpp	Tue Aug 31 15:14:29 2010 +0300
+++ b/phoneapp/phonemediatorcenter/src/cphonemediatormessagefactory.cpp	Wed Sep 01 12:30:10 2010 +0100
@@ -30,7 +30,7 @@
 // ---------------------------------------------------------
 //
 CPhoneMediatorMessageFactory::CPhoneMediatorMessageFactory( MPEEngineInfo& aEngineInfo ) : 
-    iEngineInfo( aEngineInfo )
+	iEngineInfo( aEngineInfo )
     {
     }
 
@@ -70,25 +70,25 @@
 // ---------------------------------------------------------
 //
 MPhoneMediatorMessage* CPhoneMediatorMessageFactory::CreateMessageL( 
-    const TInt aMessage, TInt aCallId )
-    {
+	const TInt aMessage, TInt aCallId )
+	{
     __LOGMETHODSTARTEND( EPhoneMediatorCenter, "CPhoneMediatorMessageFactory::CreateMessageL( ) ");
     __PHONELOG2( EBasic, EPhoneMediatorCenter, 
-        "CPhoneMediatorMessageFactory::CreateMessageL - aMessage=%d, aCallId=%d", aMessage, aCallId );
+    	"CPhoneMediatorMessageFactory::CreateMessageL - aMessage=%d, aCallId=%d", aMessage, aCallId );
 
-    MPhoneMediatorMessage* message = NULL;
+	MPhoneMediatorMessage* message = NULL;
 
-    switch( aMessage )
-        {
-        case MEngineMonitor::EPEMessageDataPortLoaned:
-            message = CPhoneDataPortMessage::NewL( iEngineInfo );
-            break;
-            
-        default:
-            break;
-        }
-            
-    return message;
-    }
+	switch( aMessage )
+		{
+		case MEngineMonitor::EPEMessageDataPortLoaned:
+			message = CPhoneDataPortMessage::NewL( iEngineInfo );
+			break;
+			
+		default:
+			break;
+		}
+			
+	return message;
+	}
 
 //  End of File