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

@@ -22,7 +22,7 @@
#pragma once
#include "View_qtquick.h"
#include "views/TabBar.h"
#include "views/TabBarViewInterface.h"
#include <QPointer>
#include <QHash>
@@ -38,7 +38,7 @@ class TabWidget;
class DOCKS_EXPORT TabBar_qtquick
: public View_qtquick,
public TabBar
public TabBarViewInterface
{
Q_OBJECT
Q_PROPERTY(QQuickItem *tabBarQmlItem READ tabBarQmlItem WRITE setTabBarQmlItem NOTIFY tabBarQmlItemChanged)