diff include/gui/pages/anime_list.h @ 63:3d2decf093bb

*: fix many clang warnings
author Paper <mrpapersonic@gmail.com>
date Sun, 01 Oct 2023 06:39:47 -0400
parents cde8f67a7c7d
children fe719c109dbc
line wrap: on
line diff
--- a/include/gui/pages/anime_list.h	Sun Oct 01 06:16:06 2023 -0400
+++ b/include/gui/pages/anime_list.h	Sun Oct 01 06:39:47 2023 -0400
@@ -9,7 +9,7 @@
 #include <vector>
 
 class AnimeListWidgetDelegate : public QStyledItemDelegate {
-	Q_OBJECT
+		Q_OBJECT
 
 	public:
 		explicit AnimeListWidgetDelegate(QObject* parent);
@@ -19,7 +19,7 @@
 };
 
 class AnimeListWidgetSortFilter : public QSortFilterProxyModel {
-	Q_OBJECT
+		Q_OBJECT
 
 	public:
 		AnimeListWidgetSortFilter(QObject* parent = nullptr);
@@ -29,7 +29,7 @@
 };
 
 class AnimeListWidgetModel : public QAbstractListModel {
-	Q_OBJECT
+		Q_OBJECT
 
 	public:
 		enum columns {
@@ -66,7 +66,7 @@
 /* todo: rename these to "page" or something more
    sensible than "widget" */
 class AnimeListWidget : public QWidget {
-	Q_OBJECT
+		Q_OBJECT
 
 	public:
 		AnimeListWidget(QWidget* parent);