summaryrefslogtreecommitdiff
path: root/src/qcam
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2021-12-06 23:39:45 +0000
committerKieran Bingham <kieran.bingham@ideasonboard.com>2022-01-19 11:10:00 +0000
commit6e15cfc6b23114c1493fbef1f048f4892270fe68 (patch)
tree317ef084a0561eac3bdd60a76e6f804995226209 /src/qcam
parent2b69ad550cfd21da67766f3d7a16cc6a31177820 (diff)
qcam: main_window: Fix include ordering
The libcamera coding style has libcamera headers after system headers, and before any other library headers. Move the libcamera headers above the QT headers accordingly. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
Diffstat (limited to 'src/qcam')
-rw-r--r--src/qcam/main_window.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qcam/main_window.cpp b/src/qcam/main_window.cpp
index ae51fa67..dd0e51f5 100644
--- a/src/qcam/main_window.cpp
+++ b/src/qcam/main_window.cpp
@@ -11,6 +11,9 @@
#include <iomanip>
#include <string>
+#include <libcamera/camera_manager.h>
+#include <libcamera/version.h>
+
#include <QComboBox>
#include <QCoreApplication>
#include <QFileDialog>
@@ -25,9 +28,6 @@
#include <QToolButton>
#include <QtDebug>
-#include <libcamera/camera_manager.h>
-#include <libcamera/version.h>
-
#include "../cam/image.h"
#include "dng_writer.h"
#ifndef QT_NO_OPENGL