Yingdi Yu | def9061 | 2013-10-09 22:34:42 -0700 | [diff] [blame^] | 1 | #include "contactpanel.h" |
2 | #include "ui_contactpanel.h" | ||||
3 | |||||
4 | ContactPanel::ContactPanel(QWidget *parent) : | ||||
5 | QDialog(parent), | ||||
6 | ui(new Ui::ContactPanel) | ||||
7 | { | ||||
8 | ui->setupUi(this); | ||||
9 | } | ||||
10 | |||||
11 | ContactPanel::~ContactPanel() | ||||
12 | { | ||||
13 | delete ui; | ||||
14 | } |