aboutsummaryrefslogtreecommitdiff
path: root/examples/GuiClient/profileDialog.cpp
diff options
context:
space:
mode:
authorManjeet Dahiya <manjeetdahiya@gmail.com>2010-09-09 08:23:53 +0000
committerManjeet Dahiya <manjeetdahiya@gmail.com>2010-09-09 08:23:53 +0000
commitf59f1f1402ef678b0789d14937d7806fd952601a (patch)
treee31643854e807a605b7da36467ca99ee13d5098d /examples/GuiClient/profileDialog.cpp
parent3e0c70ebdb2c77563a5720bfba526c8c2c0dad80 (diff)
downloadqxmpp-f59f1f1402ef678b0789d14937d7806fd952601a.tar.gz
add profile dialog
Diffstat (limited to 'examples/GuiClient/profileDialog.cpp')
-rw-r--r--examples/GuiClient/profileDialog.cpp14
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;
+}