summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-05-13 12:36:48 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-05-13 12:36:48 (GMT)
commit4a192bc9f70d20ac0a509dff1994d3aad812cb2d (patch)
tree99973369d23cc9768e3270d6970de36d5577dc6a /Swift/QtUI/QtJoinMUCDialog.h
parent705bd7256fa4812045677743fc1e939ccfd66d05 (diff)
downloadswift-4a192bc9f70d20ac0a509dff1994d3aad812cb2d.zip
swift-4a192bc9f70d20ac0a509dff1994d3aad812cb2d.tar.bz2
Remove the old Join MUC dialog
Diffstat (limited to 'Swift/QtUI/QtJoinMUCDialog.h')
-rw-r--r--Swift/QtUI/QtJoinMUCDialog.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/Swift/QtUI/QtJoinMUCDialog.h b/Swift/QtUI/QtJoinMUCDialog.h
deleted file mode 100644
index 99df46d..0000000
--- a/Swift/QtUI/QtJoinMUCDialog.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright (c) 2010 Kevin Smith
- * Licensed under the GNU General Public License v3.
- * See Documentation/Licenses/GPLv3.txt for more information.
- */
-
-#ifndef SWIFT_QtJoinMUCDialog_H
-#define SWIFT_QtJoinMUCDialog_H
-
-#include "ui_QtJoinMUCDialog.h"
-#include "Swiften/JID/JID.h"
-
-#include <QDialog>
-
-namespace Swift {
-
-class QtJoinMUCDialog : public QDialog, private Ui::QtJoinMUCDialog {
- Q_OBJECT
-
- public:
- QtJoinMUCDialog(const QString& muc, const QString& nick, QWidget* parent);
- signals:
- void onJoinCommand(const JID& muc, const QString& nick);
- public slots:
- void accept();
- private:
- void showError(const QString& error);
-};
-
-}
-
-#endif