From 215ba2750047b1e7d694b54f2ab99aef065c691c Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Sat, 2 Dec 2023 12:21:47 -0600 Subject: [PATCH] Fix segfault on launch --- src/installerprompt.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/installerprompt.cpp b/src/installerprompt.cpp index b4a1d81..e295268 100644 --- a/src/installerprompt.cpp +++ b/src/installerprompt.cpp @@ -67,11 +67,11 @@ bool InstallerPrompt::checkInternetConnection() { void InstallerPrompt::updateConnectionStatus(bool online) { if (online) { - connectionStatusLabel->setText(tr("Connected to the internet")); - connectWifiButton->setVisible(false); + ui->connectionStatusLabel->setText(tr("Connected to the internet")); + ui->connectWifiButton->setVisible(false); } else { - connectionStatusLabel->setText(tr("Not connected to the internet")); - connectWifiButton->setVisible(true); + ui->connectionStatusLabel->setText(tr("Not connected to the internet")); + ui->connectWifiButton->setVisible(true); } }