Modified by:[EMAIL PROTECTED]
Reviewed by:
Date:2/15/2005
Project:Helix Symbian Port
Synopsis:Remove 'unused variable' warnings


Overview:
Removed lines where unused variables appear in order to remove respective
warning.
Also add '#ifdef' directives in order to declare some variables only in the
specific platform that are used.


audio/device
[platform\\symbian\\audiosvr\\mmf\\audio_session-mmf.cp]        <Removed lines
where there was an unused variable warnings>



Image Size and Heap Use impact: None
Platforms and Profiles Affected: symbian-70s-thumb,
helix-client-s60-advanced
Distribution Libraries Affected: None
Distribution library impact and planned action: None
Platforms and Profiles Build Verified: symbian-70s-thumb,
helix-client-s60-advanced
Platforms and Profiles Functionality verified: symbian-70s-thumb,
helix-client-s60-advanced
Branch: 130NepX and HEAD


Copyright assignment:
I agree to assign to RealNetworks full copyright ownership of the code
represented by the attached patch. I warrant that I am legally entitled to
grant the copyright assignment and that my contribution does not violate any
law or breach any contract. I understand that RealNetworks may license this
code under RPSL, RCSL, and/or any other license at RealNetworks' sole
discretion.

Index: device/platform/symbian/audsymbian.cpp
===================================================================
RCS file: /cvsroot/audio/device/platform/symbian/audsymbian.cpp,v
retrieving revision 1.23.2.4
diff -u -r1.23.2.4 audsymbian.cpp
--- device/platform/symbian/audsymbian.cpp      28 Jan 2005 23:37:34 -0000
1.23.2.4
+++ device/platform/symbian/audsymbian.cpp      15 Feb 2005 02:42:54 -0000
@@ -78,7 +78,8 @@
       m_uMaxDevVolume(100)
 {
     CActiveScheduler::Add(this);
-    TInt err = m_iTimer.CreateLocal();
+    TInt err;                                                  // TO FIX 
WARNING UNUSED VARIABLE
+       err = m_iTimer.CreateLocal();
     HX_ASSERT(KErrNone==err);
 }



_______________________________________________
Audio-dev mailing list
[email protected]
http://lists.helixcommunity.org/mailman/listinfo/audio-dev

Reply via email to