qtms/src/qtmsglobalvoleffect.cpp
changeset 50 762d760dcfdf
parent 27 cbb1bfb7ebfb
--- a/qtms/src/qtmsglobalvoleffect.cpp	Fri Jul 23 17:48:16 2010 -0500
+++ b/qtms/src/qtmsglobalvoleffect.cpp	Fri Aug 06 17:13:32 2010 -0500
@@ -25,54 +25,48 @@
 
 QTMSGlobalVolEffect::QTMSGlobalVolEffect() :
     iEffect(NULL)
-    {
-    }
+{
+}
 
 QTMSGlobalVolEffect::~QTMSGlobalVolEffect()
-    {
-    delete (static_cast<TMSGlobalVolEffect*>(iEffect));
-    }
+{
+    delete (static_cast<TMSGlobalVolEffect*> (iEffect));
+}
 
 gint QTMSGlobalVolEffect::GetLevel(guint& level)
-    {
+{
     gint status(QTMS_RESULT_UNINITIALIZED_OBJECT);
-    if (iEffect)
-        {
+    if (iEffect) {
         status = static_cast<TMSGlobalVolEffect*> (iEffect)->GetLevel(level);
-        }
+    }
     return status;
-    }
+}
 
 gint QTMSGlobalVolEffect::SetLevel(const guint level)
-    {
+{
     gint status(QTMS_RESULT_UNINITIALIZED_OBJECT);
-    if (iEffect)
-        {
+    if (iEffect) {
         status = static_cast<TMSGlobalVolEffect*> (iEffect)->SetLevel(level);
-        }
+    }
     return status;
-    }
+}
 
 gint QTMSGlobalVolEffect::GetMaxLevel(guint& level)
-    {
+{
     gint status(QTMS_RESULT_UNINITIALIZED_OBJECT);
-    if (iEffect)
-        {
-        status = static_cast<TMSGlobalVolEffect*> (iEffect)->GetMaxLevel(
-                level);
-        }
+    if (iEffect) {
+        status = static_cast<TMSGlobalVolEffect*> (iEffect)->GetMaxLevel(level);
+    }
     return status;
-    }
+}
 
 gint QTMSGlobalVolEffect::GetType(QTMSSourceType& sourcetype)
-    {
+{
     gint status(QTMS_RESULT_UNINITIALIZED_OBJECT);
-    if (iEffect)
-        {
-        status = static_cast<TMSGlobalVolEffect*> (iEffect)->GetType(
-                sourcetype);
-        }
+    if (iEffect) {
+        status = static_cast<TMSGlobalVolEffect*> (iEffect)->GetType(sourcetype);
+    }
     return status;
-    }
+}
 
 // End of file