diff options
| author | Manjeet Dahiya <manjeetdahiya@gmail.com> | 2010-09-09 08:23:53 +0000 |
|---|---|---|
| committer | Manjeet Dahiya <manjeetdahiya@gmail.com> | 2010-09-09 08:23:53 +0000 |
| commit | f59f1f1402ef678b0789d14937d7806fd952601a (patch) | |
| tree | e31643854e807a605b7da36467ca99ee13d5098d /examples/GuiClient/profileDialog.cpp | |
| parent | 3e0c70ebdb2c77563a5720bfba526c8c2c0dad80 (diff) | |
| download | qxmpp-f59f1f1402ef678b0789d14937d7806fd952601a.tar.gz | |
add profile dialog
Diffstat (limited to 'examples/GuiClient/profileDialog.cpp')
| -rw-r--r-- | examples/GuiClient/profileDialog.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/GuiClient/profileDialog.cpp b/examples/GuiClient/profileDialog.cpp new file mode 100644 index 00000000..58d72449 --- /dev/null +++ b/examples/GuiClient/profileDialog.cpp @@ -0,0 +1,14 @@ +#include "profileDialog.h"
+#include "ui_profileDialog.h"
+
+profileDialog::profileDialog(QWidget *parent) :
+ QDialog(parent),
+ ui(new Ui::profileDialog)
+{
+ ui->setupUi(this);
+}
+
+profileDialog::~profileDialog()
+{
+ delete ui;
+}
|
