commit | def9061eb3b978c8805443567d9281aded189dd4 | [log] [tgz] |
---|---|---|
author | Yingdi Yu <yuyingdi@gmail.com> | Wed Oct 09 22:34:42 2013 -0700 |
committer | Yingdi Yu <yuyingdi@gmail.com> | Wed Oct 09 22:34:42 2013 -0700 |
tree | 661379591deb51b7a18a19d7a2f60e20e638b00f | |
parent | ffb32633c0c793aa516f8beab0dd73e6f8ac08bb [diff] [blame] |
tmp
diff --git a/src/contactpanel.cpp b/src/contactpanel.cpp new file mode 100644 index 0000000..9d8d8c1 --- /dev/null +++ b/src/contactpanel.cpp
@@ -0,0 +1,14 @@ +#include "contactpanel.h" +#include "ui_contactpanel.h" + +ContactPanel::ContactPanel(QWidget *parent) : + QDialog(parent), + ui(new Ui::ContactPanel) +{ + ui->setupUi(this); +} + +ContactPanel::~ContactPanel() +{ + delete ui; +}