Remove unused member function

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2016-03-09 20:28:12 -08:00
parent b8fbf72182
commit 60ee897b29
2 changed files with 0 additions and 17 deletions

View file

@ -105,22 +105,6 @@ void DiveLogExportDialog::exportHtmlInit(const QString &filename)
exportHtmlInitLogic(filename, hes);
}
void DiveLogExportDialog::exportHTMLsettings(const QString &filename)
{
QSettings settings;
settings.beginGroup("HTML");
settings.setValue("fontSelection", ui->fontSelection->currentIndex());
settings.setValue("fontSizeSelection", ui->fontSizeSelection->currentIndex());
settings.setValue("themeSelection", ui->themeSelection->currentIndex());
settings.setValue("subsurfaceNumbers", ui->exportSubsurfaceNumber->isChecked());
settings.setValue("yearlyStatistics", ui->exportStatistics->isChecked());
settings.setValue("listOnly", ui->exportListOnly->isChecked());
settings.setValue("exportPhotos", ui->exportPhotos->isChecked());
settings.endGroup();
}
void DiveLogExportDialog::on_exportGroup_buttonClicked(QAbstractButton *button)
{
showExplanation();

View file

@ -32,7 +32,6 @@ private:
Ui::DiveLogExportDialog *ui;
void showExplanation();
void exportHtmlInit(const QString &filename);
void exportHTMLsettings(const QString &filename);
void export_depths(const char *filename, const bool selected_only);
};