summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/QtUI/QtInviteToChatWindow.h')
-rw-r--r--Swift/QtUI/QtInviteToChatWindow.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Swift/QtUI/QtInviteToChatWindow.h b/Swift/QtUI/QtInviteToChatWindow.h
index a0167db..dd8743a 100644
--- a/Swift/QtUI/QtInviteToChatWindow.h
+++ b/Swift/QtUI/QtInviteToChatWindow.h
@@ -7,18 +7,19 @@
#pragma once
#include <Swift/Controllers/UIInterfaces/InviteToChatWindow.h>
#include <QDialog>
#include <QStringListModel>
class QLineEdit;
class QBoxLayout;
+class QDialogButtonBox;
namespace Swift {
class QtInviteToChatWindow : public QDialog, public InviteToChatWindow {
Q_OBJECT
public:
QtInviteToChatWindow(QWidget* parent = NULL);
virtual ~QtInviteToChatWindow();
virtual std::string getReason() const;
@@ -30,13 +31,14 @@ namespace Swift {
private slots:
void handleJIDTextChanged();
void handleAccepting();
void handleRejecting();
private:
QStringListModel completions_;
QLineEdit* reason_;
QBoxLayout* jidsLayout_;
std::vector<QLineEdit*> jids_;
+ QDialogButtonBox* buttonBox_;
};
}