summaryrefslogtreecommitdiffstats
path: root/framework/src/domain
diff options
context:
space:
mode:
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{