camerauis/cameraxui/cxengine/tsrc/fakeclasses/cxefakevideorecorderutility.cpp
changeset 46 c826656d6714
parent 38 0f0b4c1d7744
--- a/camerauis/cameraxui/cxengine/tsrc/fakeclasses/cxefakevideorecorderutility.cpp	Thu Jul 15 01:53:45 2010 +0300
+++ b/camerauis/cameraxui/cxengine/tsrc/fakeclasses/cxefakevideorecorderutility.cpp	Fri Aug 06 10:03:37 2010 +0300
@@ -35,6 +35,8 @@
                               : mObserver( &aObserver )
 {
     CX_DEBUG_IN_FUNCTION();
+    Q_UNUSED(aPriority);
+    Q_UNUSED(aPref);
 }
 
 void CxeFakeVideoRecorderUtility::open(int cameraHandle,
@@ -45,6 +47,7 @@
                                        const QString &/*audioType*/)
 {
     CX_DEBUG_ENTER_FUNCTION();
+    Q_UNUSED(cameraHandle);
     mObserver->MvruoOpenComplete(KErrNone);
     CX_DEBUG_EXIT_FUNCTION();
 }
@@ -57,21 +60,25 @@
 void CxeFakeVideoRecorderUtility::setVideoFrameRate(int rate)
 {
     CX_DEBUG_IN_FUNCTION();
+    Q_UNUSED(rate);
 }
 
 void CxeFakeVideoRecorderUtility::setVideoBitRate(int rate)
 {
     CX_DEBUG_IN_FUNCTION();
+    Q_UNUSED(rate);
 }
 
 void CxeFakeVideoRecorderUtility::setAudioEnabled(bool enabled)
 {
     CX_DEBUG_IN_FUNCTION();
+    Q_UNUSED(enabled);
 }
 
 void CxeFakeVideoRecorderUtility::setVideoMaxSize(int sizeInBytes)
 {
     CX_DEBUG_IN_FUNCTION();
+    Q_UNUSED(sizeInBytes);
 }
 
 void CxeFakeVideoRecorderUtility::close()
@@ -94,6 +101,7 @@
 void CxeFakeVideoRecorderUtility::stop(bool asynchronous)
 {
     CX_DEBUG_ENTER_FUNCTION();
+    Q_UNUSED(asynchronous);
     mObserver->MvruoRecordComplete(KErrNone);
     CX_DEBUG_EXIT_FUNCTION();
 }