mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
desktop-widgets: remove QSettings from desktop-widgets
The variables referenced are moved into qPref in earlier commits so in general all QSettings calls are replaced by qPref*:: calls Signed-off-by: Jan Iversen <jani@apache.org>
This commit is contained in:
parent
5f4a040dd2
commit
321a920a98
6 changed files with 28 additions and 55 deletions
|
@ -1,7 +1,6 @@
|
|||
// SPDX-License-Identifier: GPL-2.0
|
||||
#include <QShortcut>
|
||||
#include <QMessageBox>
|
||||
#include <QSettings>
|
||||
|
||||
#include "desktop-widgets/usersurvey.h"
|
||||
#include "ui_usersurvey.h"
|
||||
|
@ -11,6 +10,7 @@
|
|||
|
||||
#include "core/qthelper.h"
|
||||
#include "core/subsurfacesysinfo.h"
|
||||
#include "core/settings/qPrefDisplay.h"
|
||||
|
||||
UserSurvey::UserSurvey(QWidget *parent) : QDialog(parent),
|
||||
ui(new Ui::UserSurvey)
|
||||
|
@ -88,9 +88,7 @@ void UserSurvey::on_buttonBox_rejected()
|
|||
// nothing to do here, we'll just ask again the next time they start
|
||||
break;
|
||||
case QDialog::Rejected:
|
||||
QSettings s;
|
||||
s.beginGroup("UserSurvey");
|
||||
s.setValue("SurveyDone", "declined");
|
||||
qPrefDisplay::set_UserSurvey("declined");
|
||||
break;
|
||||
}
|
||||
hide();
|
||||
|
@ -116,9 +114,7 @@ void UserSurvey::requestReceived()
|
|||
|
||||
if (responseBody == "OK") {
|
||||
msgText = tr("Survey successfully submitted.");
|
||||
QSettings s;
|
||||
s.beginGroup("UserSurvey");
|
||||
s.setValue("SurveyDone", "submitted");
|
||||
qPrefDisplay::set_UserSurvey("submitted");
|
||||
} else {
|
||||
msgText = tr("There was an error while trying to check for updates.<br/><br/>%1").arg(responseBody);
|
||||
msgbox.setIcon(QMessageBox::Warning);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue