fixed Typo

This commit is contained in:
mrbesen 2021-12-21 02:11:33 +01:00
parent 9bb1944fd1
commit f9d0c36402
Signed by untrusted user: MrBesen
GPG Key ID: 596B2350DCD67504
2 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ MainWindow::MainWindow(const std::string& binary, QWidget* parent) : QMainWindow
QObject::connect(ui->actionAddButton, SIGNAL( triggered() ), this, SLOT( addSample() ));
QObject::connect(ui->actionSaveConfig, SIGNAL( triggered() ), this, SLOT( saveConfig() ));
QObject::connect(ui->actionButtonManager, SIGNAL( triggered() ), this, SLOT( openButtonManager() ));
QObject::connect(ui->allwaysOnTop, SIGNAL( stateChanged(int) ), this, SLOT( alwaysOnTopSettingChange(int) ));
QObject::connect(ui->alwaysOnTop, SIGNAL( stateChanged(int) ), this, SLOT( alwaysOnTopSettingChange(int) ));
QObject::connect(stopGlobal, SIGNAL( activated() ), this, SLOT( stop() ));
QObject::connect(this, SIGNAL(newStatusMessage(const QString&)), ui->statusbar, SLOT(showMessage(const QString&)));

View File

@ -54,9 +54,9 @@
</spacer>
</item>
<item>
<widget class="QCheckBox" name="allwaysOnTop">
<widget class="QCheckBox" name="alwaysOnTop">
<property name="text">
<string>AllwaysOnTop</string>
<string>AlwaysOnTop</string>
</property>
</widget>
</item>