diff contact_list.h @ 7:017925589d4c

Contact (formerly ContactT) now use shared data
author Goffi <goffi@goffi.org>
date Sun, 14 Aug 2011 18:03:54 +0200
parents 48045176d1c6
children
line wrap: on
line diff
--- a/contact_list.h	Fri Aug 12 22:08:37 2011 +0200
+++ b/contact_list.h	Sun Aug 14 18:03:54 2011 +0200
@@ -27,11 +27,12 @@
     
     public:
         ContactList(QWidget* parent = 0);
-        void addContact(const ContactT& contact);
+        void addContact(const Contact& contact);
         void clear();
     private:
         QWidget* mainWidget;
         QListWidget* listWidget;
+        QMap<QString, Contact> m_contactMap;
 };
 
 #endif