refs #198 , using settings with GUI

This commit is contained in:
Klaus Basan
2014-04-01 12:35:12 +02:00
parent c43c3eed3c
commit 4e8e2eb0d4
3 changed files with 9 additions and 9 deletions

View File

@@ -424,7 +424,7 @@ private slots:
void alterTrafficServer(); void alterTrafficServer();
//! \brief Network settings have been changed //! \brief Network settings have been changed
void changedSettings(); void changedSettings(uint typeValue);
/*! /*!
* \brief Update timer * \brief Update timer

View File

@@ -454,7 +454,7 @@ QStatusBar QLabel {
<enum>QFrame::NoFrame</enum> <enum>QFrame::NoFrame</enum>
</property> </property>
<property name="currentIndex"> <property name="currentIndex">
<number>4</number> <number>0</number>
</property> </property>
<widget class="QWidget" name="pg_StatusPage"> <widget class="QWidget" name="pg_StatusPage">
<property name="sizePolicy"> <property name="sizePolicy">
@@ -554,7 +554,7 @@ QStatusBar QLabel {
<item> <item>
<widget class="QToolBox" name="tb_StatusPage"> <widget class="QToolBox" name="tb_StatusPage">
<property name="currentIndex"> <property name="currentIndex">
<number>1</number> <number>0</number>
</property> </property>
<property name="tabSpacing"> <property name="tabSpacing">
<number>3</number> <number>3</number>
@@ -564,8 +564,8 @@ QStatusBar QLabel {
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>90</width> <width>326</width>
<height>59</height> <height>267</height>
</rect> </rect>
</property> </property>
<attribute name="label"> <attribute name="label">
@@ -607,8 +607,8 @@ QStatusBar QLabel {
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>90</width> <width>326</width>
<height>55</height> <height>267</height>
</rect> </rect>
</property> </property>
<attribute name="label"> <attribute name="label">

View File

@@ -86,8 +86,9 @@ void MainWindow::alterTrafficServer()
/* /*
* Settings did changed * Settings did changed
*/ */
void MainWindow::changedSettings() void MainWindow::changedSettings(uint typeValue)
{ {
Q_UNUSED(typeValue);
this->reloadSettings(); this->reloadSettings();
} }
@@ -105,7 +106,6 @@ void MainWindow::updateGuiSelectedServerTextboxes(const CServer &server)
this->ui->le_SettingsTnCsPassword->setText(server.getUser().getPassword()); this->ui->le_SettingsTnCsPassword->setText(server.getUser().getPassword());
} }
/* /*
* Server settings from textboxes * Server settings from textboxes
*/ */