summaryrefslogtreecommitdiff
path: root/src/qcam/main.cpp
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-08-18 03:22:45 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-08-19 19:06:23 +0300
commitaf49b18c81a3998b59b1aae0daa16ec5050e44fc (patch)
treedb3b3ba4078bcad37da3bb447f940760d09e90ad /src/qcam/main.cpp
parent749dbd576f98d928fc4bc6a5116640d98f2f6dce (diff)
qcam: Pass camera manager to MainWindow class
Pass the CameraManager instance from the main() function to the MainWindow class instead of accessing it through CameraManager::instance(). This prepares for the removal of the CameraManager::instance() method. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'src/qcam/main.cpp')
-rw-r--r--src/qcam/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcam/main.cpp b/src/qcam/main.cpp
index da942f3d..05d3b77e 100644
--- a/src/qcam/main.cpp
+++ b/src/qcam/main.cpp
@@ -73,7 +73,7 @@ int main(int argc, char **argv)
return EXIT_FAILURE;
}
- MainWindow *mainWindow = new MainWindow(options);
+ MainWindow *mainWindow = new MainWindow(cm, options);
mainWindow->show();
ret = app.exec();
delete mainWindow;