summaryrefslogtreecommitdiffstats
path: root/framework/src/domain
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-02-06 08:44:50 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-02-06 08:44:50 +0100
commit96be258521ead8c361be5691904ee1654ced9d1b (patch)
treea14344284ff934d379db6158641320c001652658 /framework/src/domain
parent493ee57ca8ab38d0418362366e13e59625acb4e8 (diff)
downloadkube-96be258521ead8c361be5691904ee1654ced9d1b.tar.gz
kube-96be258521ead8c361be5691904ee1654ced9d1b.zip
Fixed warnings
Diffstat (limited to 'framework/src/domain')
-rw-r--r--framework/src/domain/identitiesmodel.cpp2
-rw-r--r--framework/src/domain/outboxmodel.cpp2
-rw-r--r--framework/src/domain/recepientautocompletionmodel.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/framework/src/domain/identitiesmodel.cpp b/framework/src/domain/identitiesmodel.cpp
index 029c6b00..ec91fdec 100644
--- a/framework/src/domain/identitiesmodel.cpp
+++ b/framework/src/domain/identitiesmodel.cpp
@@ -22,7 +22,7 @@
22 22
23using namespace Sink; 23using namespace Sink;
24 24
25IdentitiesModel::IdentitiesModel(QObject *parent) : QIdentityProxyModel() 25IdentitiesModel::IdentitiesModel(QObject *parent) : QIdentityProxyModel(parent)
26{ 26{
27 Sink::Query query; 27 Sink::Query query;
28 query.setFlags(Query::LiveQuery); 28 query.setFlags(Query::LiveQuery);
diff --git a/framework/src/domain/outboxmodel.cpp b/framework/src/domain/outboxmodel.cpp
index 237648b1..b093c3d1 100644
--- a/framework/src/domain/outboxmodel.cpp
+++ b/framework/src/domain/outboxmodel.cpp
@@ -30,7 +30,7 @@
30 30
31 31
32OutboxModel::OutboxModel(QObject *parent) 32OutboxModel::OutboxModel(QObject *parent)
33 : QSortFilterProxyModel(), 33 : QSortFilterProxyModel(parent),
34 mNotifier(new Sink::Notifier{Sink::Query{}.containsFilter<Sink::ApplicationDomain::SinkResource::Capabilities>(Sink::ApplicationDomain::ResourceCapabilities::Mail::transport)}), 34 mNotifier(new Sink::Notifier{Sink::Query{}.containsFilter<Sink::ApplicationDomain::SinkResource::Capabilities>(Sink::ApplicationDomain::ResourceCapabilities::Mail::transport)}),
35 mStatus(NoStatus) 35 mStatus(NoStatus)
36{ 36{
diff --git a/framework/src/domain/recepientautocompletionmodel.cpp b/framework/src/domain/recepientautocompletionmodel.cpp
index c1bcb292..0fa7c0ac 100644
--- a/framework/src/domain/recepientautocompletionmodel.cpp
+++ b/framework/src/domain/recepientautocompletionmodel.cpp
@@ -30,7 +30,7 @@
30using namespace Sink::ApplicationDomain; 30using namespace Sink::ApplicationDomain;
31 31
32RecipientAutocompletionModel::RecipientAutocompletionModel(QObject *parent) 32RecipientAutocompletionModel::RecipientAutocompletionModel(QObject *parent)
33 : QSortFilterProxyModel(), 33 : QSortFilterProxyModel(parent),
34 mSourceModel(new QStandardItemModel), 34 mSourceModel(new QStandardItemModel),
35 mTimer(new QTimer) 35 mTimer(new QTimer)
36{ 36{