mmserv/tms/tmsimpl/src/tmsformatimpl.cpp
changeset 14 80975da52420
parent 12 5a06f39ad45b
child 16 43d09473c595
--- a/mmserv/tms/tmsimpl/src/tmsformatimpl.cpp	Fri Apr 16 15:29:42 2010 +0300
+++ b/mmserv/tms/tmsimpl/src/tmsformatimpl.cpp	Mon May 03 12:59:52 2010 +0300
@@ -78,23 +78,23 @@
     switch (fmttype)
         {
         case TMS_FORMAT_PCM:
-            delete (TMSPCMFormatImpl*) (tmsfmt);
+            delete (static_cast<TMSPCMFormatImpl*>(tmsfmt));
             tmsfmt = NULL;
             break;
         case TMS_FORMAT_AMR:
-            delete (TMSAMRFormatImpl*) (tmsfmt);
+            delete (static_cast<TMSAMRFormatImpl*>(tmsfmt));
             tmsfmt = NULL;
             break;
         case TMS_FORMAT_G711:
-            delete (TMSG711FormatImpl*) (tmsfmt);
+            delete (static_cast<TMSG711FormatImpl*>(tmsfmt));
             tmsfmt = NULL;
             break;
         case TMS_FORMAT_G729:
-            delete (TMSG729FormatImpl*) (tmsfmt);
+            delete (static_cast<TMSG729FormatImpl*>(tmsfmt));
             tmsfmt = NULL;
             break;
         case TMS_FORMAT_ILBC:
-            delete (TMSILBCFormatImpl*) (tmsfmt);
+            delete (static_cast<TMSILBCFormatImpl*>(tmsfmt));
             tmsfmt = NULL;
             break;
         default: