diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2014-06-03 20:53:43 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-03 21:16:11 -0700 |
commit | a89533bf372839a7e6992dda5f60ecfc319217fe (patch) | |
tree | 261dc81966938449ca45b7046799e05bd67d8b0f | |
parent | 197bd76f16ccca0ebdfae7dba0a19993e278485b (diff) | |
download | subsurface-a89533bf372839a7e6992dda5f60ecfc319217fe.tar.gz |
Fix HTML export white space issues
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/divelogexportdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-ui/divelogexportdialog.cpp b/qt-ui/divelogexportdialog.cpp index 938a19d85..ada5dabcf 100644 --- a/qt-ui/divelogexportdialog.cpp +++ b/qt-ui/divelogexportdialog.cpp @@ -15,7 +15,7 @@ #include "helpers.h" DiveLogExportDialog::DiveLogExportDialog(QWidget *parent) : QDialog(parent), - ui(new Ui::DiveLogExportDialog) + ui(new Ui::DiveLogExportDialog) { ui->setupUi(this); showExplanation(); @@ -83,7 +83,7 @@ void DiveLogExportDialog::exportHtmlInit(QString filename) QString searchPath = getSubsurfaceDataPath("theme"); if (searchPath == "") { - return ; + return; } QFile *tmpFile; @@ -179,7 +179,7 @@ void DiveLogExportDialog::on_buttonBox_accepted() break; case 1: filename = QFileDialog::getSaveFileName(this, tr("Export Subsurface"), lastDir, - tr("Folders"),0 , QFileDialog::ShowDirsOnly); + tr("Folders"), 0, QFileDialog::ShowDirsOnly); if (!filename.isNull() && !filename.isEmpty()) exportHtmlInit(filename); break; |