fix a typo
This commit is contained in:
@@ -2083,7 +2083,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="6" column="0">
|
<item row="6" column="0">
|
||||||
<widget class="QCheckBox" name="checkBox_InetGane_AutoLeaveTheTableAfterGameFinished">
|
<widget class="QCheckBox" name="checkBox_InetGame_AutoLeaveTheTableAfterGameFinished">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Automatically leave the table after the game finished</string>
|
<string>Automatically leave the table after the game finished</string>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -1899,7 +1899,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
</spacer>
|
</spacer>
|
||||||
</item>
|
</item>
|
||||||
<item row="4" column="0">
|
<item row="4" column="0">
|
||||||
<widget class="QCheckBox" name="checkBox_InetGane_AutoLeaveTheTableAfterGameFinished">
|
<widget class="QCheckBox" name="checkBox_InetGame_AutoLeaveTheTableAfterGameFinished">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Automatically leave the table after the game finished</string>
|
<string>Automatically leave the table after the game finished</string>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -257,7 +257,7 @@ void settingsDialogImpl::prepareDialog()
|
|||||||
lineEdit_InternetGamePassword->setText(QString::fromUtf8(myConfig->readConfigString("InternetGamePassword").c_str()));
|
lineEdit_InternetGamePassword->setText(QString::fromUtf8(myConfig->readConfigString("InternetGamePassword").c_str()));
|
||||||
}
|
}
|
||||||
checkBox_UseLobbyChat->setChecked(myConfig->readConfigInt("UseLobbyChat"));
|
checkBox_UseLobbyChat->setChecked(myConfig->readConfigInt("UseLobbyChat"));
|
||||||
checkBox_InetGane_AutoLeaveTheTableAfterGameFinished->setChecked(myConfig->readConfigInt("NetAutoLeaveGameAfterFinish"));
|
checkBox_InetGame_AutoLeaveTheTableAfterGameFinished->setChecked(myConfig->readConfigInt("NetAutoLeaveGameAfterFinish"));
|
||||||
comboBox_internetGameType->setCurrentIndex(myConfig->readConfigInt("InternetGameType"));
|
comboBox_internetGameType->setCurrentIndex(myConfig->readConfigInt("InternetGameType"));
|
||||||
lineEdit_internetGameName->setText(QString::fromUtf8(myConfig->readConfigString("InternetGameName").c_str()));
|
lineEdit_internetGameName->setText(QString::fromUtf8(myConfig->readConfigString("InternetGameName").c_str()));
|
||||||
if(myConfig->readConfigInt("InternetServerConfigMode")) {
|
if(myConfig->readConfigInt("InternetServerConfigMode")) {
|
||||||
@@ -712,7 +712,7 @@ void settingsDialogImpl::isAccepted()
|
|||||||
myConfig->writeConfigInt("UseInternetGamePassword", checkBox_UseInternetGamePassword->isChecked());
|
myConfig->writeConfigInt("UseInternetGamePassword", checkBox_UseInternetGamePassword->isChecked());
|
||||||
myConfig->writeConfigString("InternetGamePassword", lineEdit_InternetGamePassword->text().toUtf8().constData());
|
myConfig->writeConfigString("InternetGamePassword", lineEdit_InternetGamePassword->text().toUtf8().constData());
|
||||||
myConfig->writeConfigInt("UseLobbyChat", checkBox_UseLobbyChat->isChecked());
|
myConfig->writeConfigInt("UseLobbyChat", checkBox_UseLobbyChat->isChecked());
|
||||||
myConfig->writeConfigInt("NetAutoLeaveGameAfterFinish", checkBox_InetGane_AutoLeaveTheTableAfterGameFinished->isChecked());
|
myConfig->writeConfigInt("NetAutoLeaveGameAfterFinish", checkBox_InetGame_AutoLeaveTheTableAfterGameFinished->isChecked());
|
||||||
myConfig->writeConfigInt("InternetGameType", comboBox_internetGameType->currentIndex());
|
myConfig->writeConfigInt("InternetGameType", comboBox_internetGameType->currentIndex());
|
||||||
myConfig->writeConfigString("InternetGameName", lineEdit_internetGameName->text().toUtf8().constData());
|
myConfig->writeConfigString("InternetGameName", lineEdit_internetGameName->text().toUtf8().constData());
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user