summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-05-09 07:08:03 +0200
committerLioncash <mathew1800@gmail.com>2019-05-09 07:08:06 +0200
commita97120efc1bec17861066ed0d19a7d19d9d747c0 (patch)
tree184c8fefd02a275e0b90a432ed90b97ea46beb60
parentloader/nso: Remove left-in debug pragma (diff)
downloadyuzu-a97120efc1bec17861066ed0d19a7d19d9d747c0.tar
yuzu-a97120efc1bec17861066ed0d19a7d19d9d747c0.tar.gz
yuzu-a97120efc1bec17861066ed0d19a7d19d9d747c0.tar.bz2
yuzu-a97120efc1bec17861066ed0d19a7d19d9d747c0.tar.lz
yuzu-a97120efc1bec17861066ed0d19a7d19d9d747c0.tar.xz
yuzu-a97120efc1bec17861066ed0d19a7d19d9d747c0.tar.zst
yuzu-a97120efc1bec17861066ed0d19a7d19d9d747c0.zip
-rw-r--r--src/yuzu/compatdb.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/yuzu/compatdb.cpp b/src/yuzu/compatdb.cpp
index c8b0a5ec0..5477f050c 100644
--- a/src/yuzu/compatdb.cpp
+++ b/src/yuzu/compatdb.cpp
@@ -58,7 +58,7 @@ void CompatDB::Submit() {
button(NextButton)->setEnabled(false);
button(NextButton)->setText(tr("Submitting"));
- button(QWizard::CancelButton)->setVisible(false);
+ button(CancelButton)->setVisible(false);
testcase_watcher.setFuture(QtConcurrent::run(
[] { return Core::System::GetInstance().TelemetrySession().SubmitTestcase(); }));
@@ -74,12 +74,12 @@ void CompatDB::OnTestcaseSubmitted() {
tr("An error occured while sending the Testcase"));
button(NextButton)->setEnabled(true);
button(NextButton)->setText(tr("Next"));
- button(QWizard::CancelButton)->setVisible(true);
+ button(CancelButton)->setVisible(true);
} else {
next();
// older versions of QT don't support the "NoCancelButtonOnLastPage" option, this is a
// workaround
- button(QWizard::CancelButton)->setVisible(false);
+ button(CancelButton)->setVisible(false);
}
}