--- a/mmserv/tms/tmscallserver/src/tmscsuplink.cpp Fri Sep 17 08:33:15 2010 +0300
+++ b/mmserv/tms/tmscallserver/src/tmscsuplink.cpp Mon Oct 04 00:51:56 2010 +0300
@@ -63,21 +63,6 @@
}
// -----------------------------------------------------------------------------
-// Gives mic mute state
-// -----------------------------------------------------------------------------
-//
-gboolean TMSCSUplink::IsMuted()
- {
- gint gain(0);
-
- if (iDevSound)
- {
- gain = iDevSound->Gain();
- }
- return ((!gain)? TRUE : FALSE);
- }
-
-// -----------------------------------------------------------------------------
// Sets mic gain
// -----------------------------------------------------------------------------
//
@@ -148,6 +133,7 @@
if (iActivationOngoing && (aError == KErrAccessDenied ||
aError == KErrInUse))
{
+#ifndef __WINSCW__
if (iStartRetryTime != 0)
{
StartTimer();
@@ -158,6 +144,9 @@
iActivationOngoing = EFalse;
iObserver.UplinkActivationCompleted(aError);
}
+#else //__WINSCW__
+ iObserver.UplinkActivationCompleted(TMS_RESULT_SUCCESS);
+#endif //__WINSCW__
}
}