summaryrefslogtreecommitdiffstats
path: root/framework/src/domain/contactcontroller.h
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/domain/contactcontroller.h')
-rw-r--r--framework/src/domain/contactcontroller.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/framework/src/domain/contactcontroller.h b/framework/src/domain/contactcontroller.h
index 852a003f..61e37de8 100644
--- a/framework/src/domain/contactcontroller.h
+++ b/framework/src/domain/contactcontroller.h
@@ -54,9 +54,13 @@ public:
54 explicit ContactController(); 54 explicit ContactController();
55 55
56 Q_INVOKABLE void loadContact(const QVariant &contact); 56 Q_INVOKABLE void loadContact(const QVariant &contact);
57 Q_INVOKABLE void remove();
57 58
58 QVariant contact() const; 59 QVariant contact() const;
59 60
60private slots: 61private slots:
61 void updateSaveAction(); 62 void updateSaveAction();
63
64private:
65 QVariant mContact;
62}; 66};