forked from mirror/openmw-tes3mp
[Browser] Change "Not fully" into "Not full"
This commit is contained in:
parent
bcee35ca1d
commit
8e1dff8e02
3 changed files with 5 additions and 5 deletions
|
@ -41,7 +41,7 @@ MainWindow::MainWindow(QWidget *parent)
|
|||
connect(tblFavorites, SIGNAL(clicked(QModelIndex)), this, SLOT(serverSelected()));
|
||||
connect(tblFavorites, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(play()));
|
||||
connect(tblServerBrowser, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(play()));
|
||||
connect(cBoxNotFully, SIGNAL(toggled(bool)), this, SLOT(notFullySwitch(bool)));
|
||||
connect(cBoxNotFull, SIGNAL(toggled(bool)), this, SLOT(notFullSwitch(bool)));
|
||||
connect(cBoxWithPlayers, SIGNAL(toggled(bool)), this, SLOT(havePlayersSwitch(bool)));
|
||||
connect(comboLatency, SIGNAL(currentIndexChanged(int)), this, SLOT(maxLatencyChanged(int)));
|
||||
connect(leGamemode, SIGNAL(textChanged(const QString &)), this, SLOT(gamemodeChanged(const QString &)));
|
||||
|
@ -191,7 +191,7 @@ void MainWindow::loadFavorites()
|
|||
file.close();
|
||||
}
|
||||
|
||||
void MainWindow::notFullySwitch(bool state)
|
||||
void MainWindow::notFullSwitch(bool state)
|
||||
{
|
||||
proxyModel->filterFullServer(state);
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ protected slots:
|
|||
void deleteServer();
|
||||
void play();
|
||||
void serverSelected();
|
||||
void notFullySwitch(bool state);
|
||||
void notFullSwitch(bool state);
|
||||
void havePlayersSwitch(bool state);
|
||||
void maxLatencyChanged(int index);
|
||||
void gamemodeChanged(const QString &text);
|
||||
|
|
|
@ -153,9 +153,9 @@
|
|||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
||||
<item>
|
||||
<widget class="QCheckBox" name="cBoxNotFully">
|
||||
<widget class="QCheckBox" name="cBoxNotFull">
|
||||
<property name="text">
|
||||
<string>Not fully</string>
|
||||
<string>Not full</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
|
Loading…
Reference in a new issue