wants to use putty session, show session name instead of the ip
address in the "Address that will be used to communicate with the
firewall" input field in the installer options dialog.
This commit is contained in:
Vadim Kurland
2010-11-10 11:55:46 -08:00
parent 3b8c0bc65a
commit 9f01320b82
2 changed files with 14 additions and 2 deletions
+8 -1
View File
@@ -1,3 +1,10 @@
2010-11-10 Vadim Kurland <vadim@vk.crocodile.org>
* instOptionsDialog.cpp (instOptionsDialog): see #1832 if user
wants to use putty session, show session name instead of the ip
address in the "Address that will be used to communicate with the
firewall" input field in the installer options dialog.
2010-11-09 Vadim Kurland <vadim@netcitadel.com>
* Helper.cpp (Helper::findInterfaceByAddress): see #1834 Fixed
@@ -33,7 +40,7 @@
"Objects" page of the global preferences dialog; checkbox in this
tab allows the user to choose whether new policy rules should be
created with logging turned on or off.
2010-11-04 Roman Bovsunivskiy <a2k0001@gmail.com>
* see #1826 "Please place all unit tests in one directory". All GUI
+6 -1
View File
@@ -92,7 +92,12 @@ instOptionsDialog::instOptionsDialog(QWidget *parent, instConf *_cnf, bool cance
m_dialog->backupConfigFile->setText( cnf->backup_file );
m_dialog->saveDiff->setChecked( cnf->save_diff );
m_dialog->saveStandby->setChecked( cnf->saveStandby );
m_dialog->altAddress->setText( cnf->maddr );
if (!cnf->putty_session.isEmpty())
m_dialog->altAddress->setText( cnf->putty_session );
else
m_dialog->altAddress->setText( cnf->maddr );
m_dialog->quiet->setChecked( cnf->quiet );
m_dialog->verbose->setChecked( cnf->verbose );
m_dialog->stripComments->setChecked( cnf->stripComments );