summaryrefslogtreecommitdiffstats
path: root/framework/domain/maillistmodel.h
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-01-11 14:58:20 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-01-11 14:58:20 +0100
commit7129af7b55dd13c8caa359f7cda9642bfab533b4 (patch)
treefefd73bb88f1c6600e0ec1c7a1f2c11f4b270a17 /framework/domain/maillistmodel.h
parent41927399c33eae952f78b8361d145c00c5f744d2 (diff)
downloadkube-7129af7b55dd13c8caa359f7cda9642bfab533b4.tar.gz
kube-7129af7b55dd13c8caa359f7cda9642bfab533b4.zip
Fetch incomplete mails automatically.
Diffstat (limited to 'framework/domain/maillistmodel.h')
-rw-r--r--framework/domain/maillistmodel.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/framework/domain/maillistmodel.h b/framework/domain/maillistmodel.h
index 71a0a6df..faed9edf 100644
--- a/framework/domain/maillistmodel.h
+++ b/framework/domain/maillistmodel.h
@@ -68,6 +68,10 @@ public:
68 68
69 void setMail(const QVariant &mail); 69 void setMail(const QVariant &mail);
70 QVariant mail() const; 70 QVariant mail() const;
71private slots:
72 void onRowsInserted(const QModelIndex &idx, int, int);
73
71private: 74private:
72 QSharedPointer<QAbstractItemModel> m_model; 75 QSharedPointer<QAbstractItemModel> m_model;
76 bool mFetchMails = false;
73}; 77};