diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2015-08-21 04:05:55 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2015-08-21 04:05:55 +0300 |
commit | c8029a36924fdad89b2455746bfd771da723287f (patch) | |
tree | ecf981983d178176bd2e9619c7040c743c34d67d /client-qt/udm-client-qt/connect_widget.cpp | |
parent | c83c19a7d93ee77617c6e47bf0700346545b4611 (diff) |
client-qt:
correct network thread termination
downloads model skeleton
filters model skeleton
empty download info tabwindow
main window layout
initial server data requests (settings, modules, downloads)
protocol:
renamed most of ui_* messages to download_ui* as it more precise
reworked ui related proto part
added download related messages (should be sufficient for now)
some work on event subscription part
bit of work on module related messages
added more top level messages (most of defined messages may be used now)
Diffstat (limited to 'client-qt/udm-client-qt/connect_widget.cpp')
-rw-r--r-- | client-qt/udm-client-qt/connect_widget.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client-qt/udm-client-qt/connect_widget.cpp b/client-qt/udm-client-qt/connect_widget.cpp index 2c35ea2..ee17b3c 100644 --- a/client-qt/udm-client-qt/connect_widget.cpp +++ b/client-qt/udm-client-qt/connect_widget.cpp @@ -33,8 +33,9 @@ connect_widget::connect_widget(QWidget *parent) : QWidget(parent) { edit_host = new QLineEdit(this), edit_port = new QLineEdit(this), edit_passwd = new QLineEdit(this); + edit_host->setText("127.0.0.1"); edit_port->setInputMask("D0000"); - edit_port->setText("1"); + edit_port->setText("6613"); edit_passwd->setEchoMode(QLineEdit::Password); lbl_host = new QLabel(tr("host") + ":", this); lbl_port = new QLabel(tr("port") + ":", this); |