summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2015-09-14 21:05:58 (GMT)
committerKevin Smith <kevin.smith@isode.com>2015-09-22 15:00:47 (GMT)
commit74116593461c0c7b233dad96034768264e7a59ec (patch)
tree0794a0076d54a49e99f046508fc57f07ca56b921 /Swift/QtUI/QtAdHocCommandWithJIDWindow.cpp
parent9b48a737db5237ecdec062a64b65e6a90c1f9cde (diff)
downloadswift-74116593461c0c7b233dad96034768264e7a59ec.zip
swift-74116593461c0c7b233dad96034768264e7a59ec.tar.bz2
Fix 'unused' member/parameter compiler warnings reported for Swift
Test-Information: Still compiles, the menitoned warnings in Swift are gone and unit tests pass. Change-Id: I8e113e7faf2e9273b4741f18c19e35e1b7bc7661
Diffstat (limited to 'Swift/QtUI/QtAdHocCommandWithJIDWindow.cpp')
-rw-r--r--Swift/QtUI/QtAdHocCommandWithJIDWindow.cpp17
1 files changed, 10 insertions, 7 deletions
diff --git a/Swift/QtUI/QtAdHocCommandWithJIDWindow.cpp b/Swift/QtUI/QtAdHocCommandWithJIDWindow.cpp
index 4a28bbd..ac2a603 100644
--- a/Swift/QtUI/QtAdHocCommandWithJIDWindow.cpp
+++ b/Swift/QtUI/QtAdHocCommandWithJIDWindow.cpp
@@ -1,23 +1,26 @@
/*
- * Copyright (c) 2010-2014 Isode Limited.
+ * Copyright (c) 2010-2015 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
+#include <Swift/QtUI/QtAdHocCommandWithJIDWindow.h>
+
#include <boost/bind.hpp>
-#include <QLabel>
-#include <QPushButton>
+
#include <QBoxLayout>
#include <QDialogButtonBox>
+#include <QLabel>
+#include <QPushButton>
+
#include <Swiften/Elements/Command.h>
-#include <Swift/Controllers/UIEvents/UIEventStream.h>
+
#include <Swift/Controllers/UIEvents/RequestAdHocWithJIDUIEvent.h>
-#include <Swift/QtUI/QtAdHocCommandWithJIDWindow.h>
+#include <Swift/Controllers/UIEvents/UIEventStream.h>
+
#include <Swift/QtUI/QtFormWidget.h>
#include <Swift/QtUI/QtSwiftUtil.h>
-const int FormLayoutIndex = 1;
-
namespace Swift {
QtAdHocCommandWithJIDWindow::QtAdHocCommandWithJIDWindow(UIEventStream* uiEventStream) : uiEventStream_(uiEventStream) {
QVBoxLayout* hlayout = new QVBoxLayout(this);