Suffix our view interfaces with "*ViewInterface.h"

So we know they are a view interface. They'd have the same name
as the controller otherwise
This commit is contained in:
Sergio Martins
2022-06-17 11:19:27 +01:00
parent a330042339
commit 4a47366ba0
40 changed files with 118 additions and 121 deletions

View File

@@ -21,7 +21,7 @@
#pragma once
#include "View_qtquick.h"
#include "views/Stack.h"
#include "views/StackViewInterface.h"
#include <QAbstractListModel>
#include <QVector>
@@ -40,7 +40,7 @@ class DockWidgetModel;
class DOCKS_EXPORT Stack_qtquick
: public View_qtquick,
public Stack
public StackViewInterface
{
Q_OBJECT
Q_PROPERTY(DockWidgetModel *dockWidgetModel READ dockWidgetModel CONSTANT)