add contact panel
diff --git a/src/main.cpp b/src/main.cpp
index 9839b4a..83212d2 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -12,6 +12,7 @@
 #include <QSystemTrayIcon>
 
 #include "chronochat.h"
+#include "contactpanel.h"
 
 int main(int argc, char *argv[])
 {
@@ -23,11 +24,11 @@
 // // 	app.setWindowIcon(QIcon("/Users/yuyingdi/Develop/QT/images/icon_large.png"));
 // // #endif
 
-  ChronoChat dialog;
+  ContactPanel contactPanel;
 
-  dialog.show ();
-  dialog.activateWindow ();
-  dialog.raise ();
+  contactPanel.show ();
+  contactPanel.activateWindow ();
+  contactPanel.raise ();
   
   return app.exec();
 }