mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Delete desktop-widgets/preferences/preferences_dc.cpp
Remove preferences "Dive Download" window. Delete all dive computers no longer needed now that they can be deleted on the import window. Signed-off-by: jme <32236882+notrege@users.noreply.github.com>
This commit is contained in:
parent
12ae3d4e96
commit
358b9186bf
1 changed files with 0 additions and 39 deletions
|
@ -1,39 +0,0 @@
|
||||||
// SPDX-License-Identifier: GPL-2.0
|
|
||||||
#include "preferences_dc.h"
|
|
||||||
#include "ui_preferences_dc.h"
|
|
||||||
#include "core/dive.h"
|
|
||||||
#include "core/settings/qPrefDisplay.h"
|
|
||||||
#include "core/settings/qPrefCloudStorage.h"
|
|
||||||
#include "core/settings/qPrefDiveComputer.h"
|
|
||||||
|
|
||||||
#include <QFileDialog>
|
|
||||||
#include <QProcess>
|
|
||||||
#include <QMessageBox>
|
|
||||||
|
|
||||||
PreferencesDc::PreferencesDc(): AbstractPreferencesWidget(tr("Dive download"), QIcon(":preferences-dc-icon"), 3 ), ui(new Ui::PreferencesDc())
|
|
||||||
{
|
|
||||||
ui->setupUi(this);
|
|
||||||
const QSize BUTTON_SIZE = QSize(200, 22);
|
|
||||||
ui->resetRememberedDCs->resize(BUTTON_SIZE);
|
|
||||||
}
|
|
||||||
|
|
||||||
PreferencesDc::~PreferencesDc()
|
|
||||||
{
|
|
||||||
delete ui;
|
|
||||||
}
|
|
||||||
|
|
||||||
void PreferencesDc::on_resetRememberedDCs_clicked()
|
|
||||||
{
|
|
||||||
qPrefDiveComputer::set_vendor1(QString());
|
|
||||||
qPrefDiveComputer::set_vendor2(QString());
|
|
||||||
qPrefDiveComputer::set_vendor3(QString());
|
|
||||||
qPrefDiveComputer::set_vendor4(QString());
|
|
||||||
}
|
|
||||||
|
|
||||||
void PreferencesDc::refreshSettings()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void PreferencesDc::syncSettings()
|
|
||||||
{
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue