diff -r d141fc1ad77b -r e61a04404bdf qtms/src/qtmsglobalgaineffect.cpp --- a/qtms/src/qtmsglobalgaineffect.cpp Tue Jul 06 14:48:59 2010 +0300 +++ b/qtms/src/qtmsglobalgaineffect.cpp Wed Aug 18 10:16:02 2010 +0300 @@ -25,54 +25,48 @@ QTMSGlobalGainEffect::QTMSGlobalGainEffect() : iEffect(NULL) - { - } +{ +} QTMSGlobalGainEffect::~QTMSGlobalGainEffect() - { - delete (static_cast(iEffect)); - } +{ + delete (static_cast (iEffect)); +} gint QTMSGlobalGainEffect::GetLevel(guint& level) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iEffect) - { + if (iEffect) { status = static_cast (iEffect)->GetLevel(level); - } + } return status; - } +} gint QTMSGlobalGainEffect::SetLevel(const guint level) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iEffect) - { + if (iEffect) { status = static_cast (iEffect)->SetLevel(level); - } + } return status; - } +} gint QTMSGlobalGainEffect::GetMaxLevel(guint& level) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iEffect) - { - status = static_cast (iEffect)->GetMaxLevel( - level); - } + if (iEffect) { + status = static_cast (iEffect)->GetMaxLevel(level); + } return status; - } +} gint QTMSGlobalGainEffect::GetType(QTMSSourceType& sourcetype) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iEffect) - { - status = static_cast (iEffect)->GetType( - sourcetype); - } + if (iEffect) { + status = static_cast (iEffect)->GetType(sourcetype); + } return status; - } +} // End of file