Make contact-storage pure storage
diff --git a/src/profileeditor.h b/src/profileeditor.h
index 78d949d..196a263 100644
--- a/src/profileeditor.h
+++ b/src/profileeditor.h
@@ -15,7 +15,7 @@
#include <QtSql/QSqlTableModel>
#ifndef Q_MOC_RUN
-#include "contact-storage.h"
+#include "contact-manager.h"
#endif
namespace Ui {
@@ -27,7 +27,7 @@
Q_OBJECT
public:
- explicit ProfileEditor(ndn::Ptr<ContactStorage> contactStorage,
+ explicit ProfileEditor(ndn::Ptr<ContactManager> contactManager,
QWidget *parent = 0);
~ProfileEditor();
@@ -49,7 +49,7 @@
private:
Ui::ProfileEditor *ui;
QSqlTableModel* m_tableModel;
- ndn::Ptr<ContactStorage> m_contactStorage;
+ ndn::Ptr<ContactManager> m_contactManager;
ndn::Name m_defaultIdentity;
ndn::Name m_currentIdentity;
};