telephonyserver/etelmultimode/CETEL/mm_messaging.cpp
branchopencode
changeset 88 5e27cc612ac7
parent 85 96b4f933d69a
--- a/telephonyserver/etelmultimode/CETEL/mm_messaging.cpp	Sat Nov 06 18:38:12 2010 +0200
+++ b/telephonyserver/etelmultimode/CETEL/mm_messaging.cpp	Thu Nov 18 15:42:16 2010 +0200
@@ -1186,6 +1186,8 @@
 												const TDesC8& aMsgAttributes, TInt aCommand) const
 /**
 	This member function sends a USSD message to the network.
+	The received responce is later transfered to the default handler if 
+	ETransferToDefaultHandler == aCommand (the only available command for now).
 
 	See	3GPP spec. 04.90 for more details on expected responses from
 	the network.
@@ -1196,6 +1198,8 @@
 	@param aReqStatus On return, KErrNone if successful.
 	@param aMsgData The message data.
 	@param aMsgAttributes The TMobileUssdAttributesV1Pckg with the message attributes.
+	@param aCommand For now only ETransferToDefaultHandler is handled. In the future
+		   more commands might be introduced. 
 
 	@see TMobileUssdAttributesV1
 
@@ -1205,10 +1209,10 @@
 */
 	{	
 	if(ETransferToDefaultHandler != aCommand)
-	{
-	aReqStatus = KErrArgument;
-	return;
-	}	
+		{
+		aReqStatus = KErrArgument;
+		return;
+		}	
 	Set(EMobileUssdMessagingSendMessageDefaultHandler, aReqStatus, aMsgData, aMsgAttributes); 	
 	}