summaryrefslogtreecommitdiffstats
path: root/src/plugins/qnx/camera/bbcameraservice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qnx/camera/bbcameraservice.cpp')
-rw-r--r--src/plugins/qnx/camera/bbcameraservice.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/plugins/qnx/camera/bbcameraservice.cpp b/src/plugins/qnx/camera/bbcameraservice.cpp
index 5c0d7602c..ed18d694c 100644
--- a/src/plugins/qnx/camera/bbcameraservice.cpp
+++ b/src/plugins/qnx/camera/bbcameraservice.cpp
@@ -50,7 +50,6 @@
#include "bbcamerasession.h"
#include "bbcameravideoencodersettingscontrol.h"
#include "bbcameraviewfindersettingscontrol.h"
-#include "bbcamerazoomcontrol.h"
#include "bbimageencodercontrol.h"
#include "bbvideodeviceselectorcontrol.h"
#include "bbvideorenderercontrol.h"
@@ -74,7 +73,6 @@ BbCameraService::BbCameraService(QObject *parent)
, m_cameraMediaRecorderControl(new BbCameraMediaRecorderControl(m_cameraSession, this))
, m_cameraVideoEncoderSettingsControl(new BbCameraVideoEncoderSettingsControl(m_cameraSession, this))
, m_cameraViewfinderSettingsControl(new BbCameraViewfinderSettingsControl(m_cameraSession, this))
- , m_cameraZoomControl(new BbCameraZoomControl(m_cameraSession, this))
, m_imageEncoderControl(new BbImageEncoderControl(m_cameraSession, this))
, m_videoDeviceSelectorControl(new BbVideoDeviceSelectorControl(m_cameraSession, this))
, m_videoRendererControl(new BbVideoRendererControl(m_cameraSession, this))
@@ -109,8 +107,6 @@ QMediaControl* BbCameraService::requestControl(const char *name)
return m_cameraVideoEncoderSettingsControl;
else if (qstrcmp(name, QCameraViewfinderSettingsControl_iid) == 0)
return m_cameraViewfinderSettingsControl;
- else if (qstrcmp(name, QCameraZoomControl_iid) == 0)
- return m_cameraZoomControl;
else if (qstrcmp(name, QImageEncoderControl_iid) == 0)
return m_imageEncoderControl;
else if (qstrcmp(name, QVideoDeviceSelectorControl_iid) == 0)