From patchwork Mon Dec 6 23:39:45 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 15061 X-Patchwork-Delegate: kieran.bingham@ideasonboard.com Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 09CFCC324B for ; Mon, 6 Dec 2021 23:40:02 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 979CE60882; Tue, 7 Dec 2021 00:40:00 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="uZ3l5kIX"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 965816086C for ; Tue, 7 Dec 2021 00:39:55 +0100 (CET) Received: from Monstersaurus.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 41A4A5B0; Tue, 7 Dec 2021 00:39:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1638833995; bh=jAuFgW3uGmumLGQnnchfLuWmm3zBGqHn9+ADZgD5aEU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=uZ3l5kIXZu7zbjFU8hHgEfFVcdgQLH28raBnWA6xWfBJaNsESegSHR4wisuWgeT0O giEbPRsQ+1/op7UgknW7iUw/VtzAtoPXsg7CcHqwARyWZmOLpYrNikjOhadzKnlkqz pxXKi/I69vIvXTVSB8J858BI4HaiwvlQTvNyK3bM= From: Kieran Bingham To: libcamera devel Date: Mon, 6 Dec 2021 23:39:45 +0000 Message-Id: <20211206233948.1351206-6-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20211206233948.1351206-1-kieran.bingham@ideasonboard.com> References: <20211206233948.1351206-1-kieran.bingham@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 5/8] qcam: main_window: Fix include ordering X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" 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 Reviewed-by: Laurent Pinchart Reviewed-by: Umang Jain --- src/qcam/main_window.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/qcam/main_window.cpp b/src/qcam/main_window.cpp index ae51fa672a8c..dd0e51f55b70 100644 --- a/src/qcam/main_window.cpp +++ b/src/qcam/main_window.cpp @@ -11,6 +11,9 @@ #include #include +#include +#include + #include #include #include @@ -25,9 +28,6 @@ #include #include -#include -#include - #include "../cam/image.h" #include "dng_writer.h" #ifndef QT_NO_OPENGL