Fix bugs in storage classes
diff --git a/src/addcontactpanel.cpp b/src/addcontactpanel.cpp
index 34eb2e9..a3dabf7 100644
--- a/src/addcontactpanel.cpp
+++ b/src/addcontactpanel.cpp
@@ -26,8 +26,8 @@
           this, SLOT(onCancelClicked()));
   connect(ui->searchButton, SIGNAL(clicked()),
           this, SLOT(onSearchClicked()));
-  connect(&*m_contactManager, SIGNAL(contactFetched(Ptr<EndorseCertificate>)),
-          this, SLOT(selfEndorseCertificateFetched(Ptr<EndorseCertificate>)));
+  connect(&*m_contactManager, SIGNAL(contactFetched(ndn::Ptr<EndorseCertificate>)),
+          this, SLOT(selfEndorseCertificateFetched(ndn::Ptr<EndorseCertificate>)));
 }
 
 AddContactPanel::~AddContactPanel()