--- a/mmserv/tms/tmsimpl/src/tmsilbcimpl.cpp Wed Apr 14 16:29:54 2010 +0300
+++ b/mmserv/tms/tmsimpl/src/tmsilbcimpl.cpp Tue Apr 27 17:11:02 2010 +0300
@@ -43,7 +43,7 @@
if (ret == TMS_RESULT_SUCCESS)
{
this->iBody = bodyimpl;
- this->iFormatBody = (TMSILBCFormatBodyImpl*) bodyimpl;
+ this->iFormatBody = static_cast<TMSILBCFormatBodyImpl*>(bodyimpl);
}
TRACE_PRN_FN_EXT;
return ret;
@@ -75,7 +75,8 @@
gint ret(TMS_RESULT_SUCCESS);
if (this->iBody)
{
- ((TMSILBCFormatBodyImpl*) this->iBody)->SetProxy(context, queuehandler);
+ static_cast<TMSILBCFormatBodyImpl*>(this->iBody)->SetProxy(context,
+ queuehandler);
}
else
{