diff options
| author | Kevin Smith <git@kismith.co.uk> | 2012-12-04 10:11:35 (GMT) |
|---|---|---|
| committer | Kevin Smith <git@kismith.co.uk> | 2012-12-04 11:51:30 (GMT) |
| commit | 3b2a5153a79ec627113223222ed61190bcb3a7e3 (patch) | |
| tree | f6636f5ef54a444cf5f8ccf0761e0545ea6811cb /Swift/QtUI/QtConnectionSettingsWindow.h | |
| parent | fff7ba50011f25fc050329c5db9d0ff8fe11abfa (diff) | |
| download | swift-3b2a5153a79ec627113223222ed61190bcb3a7e3.zip swift-3b2a5153a79ec627113223222ed61190bcb3a7e3.tar.bz2 | |
Add validation for BOSH URLs in the connection dialog.
Change-Id: I967565abb867279238919f0e5eae6ebe0641d195
Resolves: #1186
Diffstat (limited to 'Swift/QtUI/QtConnectionSettingsWindow.h')
| -rw-r--r-- | Swift/QtUI/QtConnectionSettingsWindow.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Swift/QtUI/QtConnectionSettingsWindow.h b/Swift/QtUI/QtConnectionSettingsWindow.h index 2aed5d1..3b017ab 100644 --- a/Swift/QtUI/QtConnectionSettingsWindow.h +++ b/Swift/QtUI/QtConnectionSettingsWindow.h @@ -14,23 +14,24 @@ namespace Swift { class QtConnectionSettingsWindow : public QDialog { Q_OBJECT public: QtConnectionSettingsWindow(const ClientOptions& options); ClientOptions getOptions(); private slots: void handleProxyTypeChanged(int); + void handleAcceptRequested(); private: enum { NoProxy = 0, SystemProxy = 1, SOCKS5Proxy = 2, HTTPProxy = 3 }; Ui::QtConnectionSettings ui; }; } |
Swift