diff options
| author | Manjeet Dahiya <manjeetdahiya@gmail.com> | 2010-09-08 10:02:59 +0000 |
|---|---|---|
| committer | Manjeet Dahiya <manjeetdahiya@gmail.com> | 2010-09-08 10:02:59 +0000 |
| commit | abbc96bf2a5cba1bde09203d5038c87240117da4 (patch) | |
| tree | 51aa86769f37842bf1b97ede07560220c895c6ba /examples/GuiClient/chatDialog.cpp | |
| parent | 45cc45feb3c6f2f90def46c1e1d1dda6de72bdc8 (diff) | |
| download | qxmpp-abbc96bf2a5cba1bde09203d5038c87240117da4.tar.gz | |
reorder initialization
Diffstat (limited to 'examples/GuiClient/chatDialog.cpp')
| -rw-r--r-- | examples/GuiClient/chatDialog.cpp | 2 |
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);
|
