[libcamera-devel] qcam: main_window: Fix include ordering
diff mbox series

Message ID 20220705153248.2343275-1-kieran.bingham@ideasonboard.com
State Accepted
Headers show
Series
  • [libcamera-devel] qcam: main_window: Fix include ordering
Related show

Commit Message

Kieran Bingham July 5, 2022, 3:32 p.m. UTC
Fix the sort order of the QT headers to match the expected
sort from clang-format.

Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
---
 src/qcam/main_window.h | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

Comments

Utkarsh Tiwari July 5, 2022, 4:46 p.m. UTC | #1
On Tue, Jul 05, 2022 at 04:32:48PM +0100, Kieran Bingham via libcamera-devel wrote:
> Fix the sort order of the QT headers to match the expected
> sort from clang-format.
> 
> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
> ---
>  src/qcam/main_window.h | 17 +++++++++--------
>  1 file changed, 9 insertions(+), 8 deletions(-)
> 
> diff --git a/src/qcam/main_window.h b/src/qcam/main_window.h
> index 3fbe872c0b5b..fc70920f990c 100644
> --- a/src/qcam/main_window.h
> +++ b/src/qcam/main_window.h
> @@ -10,14 +10,6 @@
>  #include <memory>
>  #include <vector>
>  
> -#include <QElapsedTimer>
> -#include <QIcon>
> -#include <QMainWindow>
> -#include <QMutex>
> -#include <QObject>
> -#include <QQueue>
> -#include <QTimer>
> -
>  #include <libcamera/camera.h>
>  #include <libcamera/camera_manager.h>
>  #include <libcamera/controls.h>
> @@ -26,7 +18,16 @@
>  #include <libcamera/request.h>
>  #include <libcamera/stream.h>
>  
> +#include <QElapsedTimer>
> +#include <QIcon>
> +#include <QMainWindow>
> +#include <QMutex>
> +#include <QObject>
> +#include <QQueue>
> +#include <QTimer>
> +
>  #include "../cam/stream_options.h"
> +
>  #include "viewfinder.h"
>  
>  class QAction;
> -- 
> 2.34.1
> 

This can also include the fix to ordering in main_window.cpp

--- a/src/qcam/main_window.cpp
+++ b/src/qcam/main_window.cpp
@@ -30,6 +30,7 @@
 #include <QtDebug>
 
 #include "../cam/image.h"
+
 #include "dng_writer.h"
 #ifndef QT_NO_OPENGL
 #include "viewfinder_gl.h"
Kieran Bingham July 5, 2022, 4:53 p.m. UTC | #2
Hi Utkarsh,

Quoting Utkarsh Tiwari (2022-07-05 17:46:40)
> On Tue, Jul 05, 2022 at 04:32:48PM +0100, Kieran Bingham via libcamera-devel wrote:
> > Fix the sort order of the QT headers to match the expected
> > sort from clang-format.
> > 
> > Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
> > ---
> >  src/qcam/main_window.h | 17 +++++++++--------
> >  1 file changed, 9 insertions(+), 8 deletions(-)
> > 
> > diff --git a/src/qcam/main_window.h b/src/qcam/main_window.h
> > index 3fbe872c0b5b..fc70920f990c 100644
> > --- a/src/qcam/main_window.h
> > +++ b/src/qcam/main_window.h
> > @@ -10,14 +10,6 @@
> >  #include <memory>
> >  #include <vector>
> >  
> > -#include <QElapsedTimer>
> > -#include <QIcon>
> > -#include <QMainWindow>
> > -#include <QMutex>
> > -#include <QObject>
> > -#include <QQueue>
> > -#include <QTimer>
> > -
> >  #include <libcamera/camera.h>
> >  #include <libcamera/camera_manager.h>
> >  #include <libcamera/controls.h>
> > @@ -26,7 +18,16 @@
> >  #include <libcamera/request.h>
> >  #include <libcamera/stream.h>
> >  
> > +#include <QElapsedTimer>
> > +#include <QIcon>
> > +#include <QMainWindow>
> > +#include <QMutex>
> > +#include <QObject>
> > +#include <QQueue>
> > +#include <QTimer>
> > +
> >  #include "../cam/stream_options.h"
> > +
> >  #include "viewfinder.h"
> >  
> >  class QAction;
> > -- 
> > 2.34.1
> > 
> 
> This can also include the fix to ordering in main_window.cpp
> 
> --- a/src/qcam/main_window.cpp
> +++ b/src/qcam/main_window.cpp
> @@ -30,6 +30,7 @@
>  #include <QtDebug>
>  
>  #include "../cam/image.h"
> +
>  #include "dng_writer.h"
>  #ifndef QT_NO_OPENGL
>  #include "viewfinder_gl.h"
> 

Aha, that's what I get for sending out an old patch that I had in my
tree without 're-working' it.

The cam/image must have come in after I originally made this patch.

Thanks - I'll update and repost.

--
Kieran
Laurent Pinchart July 5, 2022, 8:30 p.m. UTC | #3
On Tue, Jul 05, 2022 at 05:53:10PM +0100, Kieran Bingham via libcamera-devel wrote:
> Quoting Utkarsh Tiwari (2022-07-05 17:46:40)
> > On Tue, Jul 05, 2022 at 04:32:48PM +0100, Kieran Bingham via libcamera-devel wrote:
> > > Fix the sort order of the QT headers to match the expected
> > > sort from clang-format.
> > > 
> > > Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
> > > ---
> > >  src/qcam/main_window.h | 17 +++++++++--------
> > >  1 file changed, 9 insertions(+), 8 deletions(-)
> > > 
> > > diff --git a/src/qcam/main_window.h b/src/qcam/main_window.h
> > > index 3fbe872c0b5b..fc70920f990c 100644
> > > --- a/src/qcam/main_window.h
> > > +++ b/src/qcam/main_window.h
> > > @@ -10,14 +10,6 @@
> > >  #include <memory>
> > >  #include <vector>
> > >  
> > > -#include <QElapsedTimer>
> > > -#include <QIcon>
> > > -#include <QMainWindow>
> > > -#include <QMutex>
> > > -#include <QObject>
> > > -#include <QQueue>
> > > -#include <QTimer>
> > > -
> > >  #include <libcamera/camera.h>
> > >  #include <libcamera/camera_manager.h>
> > >  #include <libcamera/controls.h>
> > > @@ -26,7 +18,16 @@
> > >  #include <libcamera/request.h>
> > >  #include <libcamera/stream.h>
> > >  
> > > +#include <QElapsedTimer>
> > > +#include <QIcon>
> > > +#include <QMainWindow>
> > > +#include <QMutex>
> > > +#include <QObject>
> > > +#include <QQueue>
> > > +#include <QTimer>
> > > +
> > >  #include "../cam/stream_options.h"
> > > +
> > >  #include "viewfinder.h"
> > >  
> > >  class QAction;
> > > -- 
> > > 2.34.1
> > > 
> > 
> > This can also include the fix to ordering in main_window.cpp
> > 
> > --- a/src/qcam/main_window.cpp
> > +++ b/src/qcam/main_window.cpp
> > @@ -30,6 +30,7 @@
> >  #include <QtDebug>
> >  
> >  #include "../cam/image.h"
> > +
> >  #include "dng_writer.h"
> >  #ifndef QT_NO_OPENGL
> >  #include "viewfinder_gl.h"
> > 
> 
> Aha, that's what I get for sending out an old patch that I had in my
> tree without 're-working' it.
> 
> The cam/image must have come in after I originally made this patch.
> 
> Thanks - I'll update and repost.

While at it, you can s/QT/Qt/ in the commit message.
Kieran Bingham July 6, 2022, 9:09 a.m. UTC | #4
Quoting Laurent Pinchart (2022-07-05 21:30:10)
> On Tue, Jul 05, 2022 at 05:53:10PM +0100, Kieran Bingham via libcamera-devel wrote:
> > Quoting Utkarsh Tiwari (2022-07-05 17:46:40)
> > > On Tue, Jul 05, 2022 at 04:32:48PM +0100, Kieran Bingham via libcamera-devel wrote:
> > > > Fix the sort order of the QT headers to match the expected
> > > > sort from clang-format.
> > > > 
> > > > Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
> > > > ---
> > > >  src/qcam/main_window.h | 17 +++++++++--------
> > > >  1 file changed, 9 insertions(+), 8 deletions(-)
> > > > 
> > > > diff --git a/src/qcam/main_window.h b/src/qcam/main_window.h
> > > > index 3fbe872c0b5b..fc70920f990c 100644
> > > > --- a/src/qcam/main_window.h
> > > > +++ b/src/qcam/main_window.h
> > > > @@ -10,14 +10,6 @@
> > > >  #include <memory>
> > > >  #include <vector>
> > > >  
> > > > -#include <QElapsedTimer>
> > > > -#include <QIcon>
> > > > -#include <QMainWindow>
> > > > -#include <QMutex>
> > > > -#include <QObject>
> > > > -#include <QQueue>
> > > > -#include <QTimer>
> > > > -
> > > >  #include <libcamera/camera.h>
> > > >  #include <libcamera/camera_manager.h>
> > > >  #include <libcamera/controls.h>
> > > > @@ -26,7 +18,16 @@
> > > >  #include <libcamera/request.h>
> > > >  #include <libcamera/stream.h>
> > > >  
> > > > +#include <QElapsedTimer>
> > > > +#include <QIcon>
> > > > +#include <QMainWindow>
> > > > +#include <QMutex>
> > > > +#include <QObject>
> > > > +#include <QQueue>
> > > > +#include <QTimer>
> > > > +
> > > >  #include "../cam/stream_options.h"
> > > > +
> > > >  #include "viewfinder.h"
> > > >  
> > > >  class QAction;
> > > > -- 
> > > > 2.34.1
> > > > 
> > > 
> > > This can also include the fix to ordering in main_window.cpp
> > > 
> > > --- a/src/qcam/main_window.cpp
> > > +++ b/src/qcam/main_window.cpp
> > > @@ -30,6 +30,7 @@
> > >  #include <QtDebug>
> > >  
> > >  #include "../cam/image.h"
> > > +
> > >  #include "dng_writer.h"
> > >  #ifndef QT_NO_OPENGL
> > >  #include "viewfinder_gl.h"
> > > 
> > 
> > Aha, that's what I get for sending out an old patch that I had in my
> > tree without 're-working' it.
> > 
> > The cam/image must have come in after I originally made this patch.

aha, this is in the .cpp file not the .h. That's why I didn't see it -
but yes, it's still relevant to update in this patch.

> > 
> > Thanks - I'll update and repost.
> 
> While at it, you can s/QT/Qt/ in the commit message.
> 
> -- 
> Regards,
> 
> Laurent Pinchart

Patch
diff mbox series

diff --git a/src/qcam/main_window.h b/src/qcam/main_window.h
index 3fbe872c0b5b..fc70920f990c 100644
--- a/src/qcam/main_window.h
+++ b/src/qcam/main_window.h
@@ -10,14 +10,6 @@ 
 #include <memory>
 #include <vector>
 
-#include <QElapsedTimer>
-#include <QIcon>
-#include <QMainWindow>
-#include <QMutex>
-#include <QObject>
-#include <QQueue>
-#include <QTimer>
-
 #include <libcamera/camera.h>
 #include <libcamera/camera_manager.h>
 #include <libcamera/controls.h>
@@ -26,7 +18,16 @@ 
 #include <libcamera/request.h>
 #include <libcamera/stream.h>
 
+#include <QElapsedTimer>
+#include <QIcon>
+#include <QMainWindow>
+#include <QMutex>
+#include <QObject>
+#include <QQueue>
+#include <QTimer>
+
 #include "../cam/stream_options.h"
+
 #include "viewfinder.h"
 
 class QAction;