aboutsummaryrefslogtreecommitdiff
path: root/examples/GuiClient/chatDialog.cpp
diff options
context:
space:
mode:
authorManjeet Dahiya <manjeetdahiya@gmail.com>2010-09-08 10:02:59 +0000
committerManjeet Dahiya <manjeetdahiya@gmail.com>2010-09-08 10:02:59 +0000
commitabbc96bf2a5cba1bde09203d5038c87240117da4 (patch)
tree51aa86769f37842bf1b97ede07560220c895c6ba /examples/GuiClient/chatDialog.cpp
parent45cc45feb3c6f2f90def46c1e1d1dda6de72bdc8 (diff)
downloadqxmpp-abbc96bf2a5cba1bde09203d5038c87240117da4.tar.gz
reorder initialization
Diffstat (limited to 'examples/GuiClient/chatDialog.cpp')
-rw-r--r--examples/GuiClient/chatDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/GuiClient/chatDialog.cpp b/examples/GuiClient/chatDialog.cpp
index cdcb6887..91c15334 100644
--- a/examples/GuiClient/chatDialog.cpp
+++ b/examples/GuiClient/chatDialog.cpp
@@ -32,7 +32,7 @@
#include <QPushButton>
chatDialog::chatDialog(QWidget *parent): QDialog(parent, Qt::Window),
- ui(new Ui::chatDialogClass), m_scene(0), m_view(0), m_client(0), m_pushButtonSend(0)
+ ui(new Ui::chatDialogClass), m_view(0), m_scene(0), m_pushButtonSend(0), m_client(0)
{
ui->setupUi(this);
m_view = new chatGraphicsView(this);