summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Jan Mulder <jlmulder@xs4all.nl>2017-02-25 12:57:29 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-02-25 09:18:53 -0800
commit7165cb473a1ca063a78187881e3bf9a2241cac0a (patch)
tree0b7f0b50344f7d4fee041f4c1fe16cab38865a2e
parent404b0fa16f6dc443797b855c9269b97789ce995a (diff)
downloadsubsurface-7165cb473a1ca063a78187881e3bf9a2241cac0a.tar.gz
Correct file list in file-open filter box
Some missing ;; caused the filter on filetypes in open-open logbook to be garbled. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
-rw-r--r--desktop-widgets/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop-widgets/mainwindow.cpp b/desktop-widgets/mainwindow.cpp
index 50b3d24ac..ea873e9c3 100644
--- a/desktop-widgets/mainwindow.cpp
+++ b/desktop-widgets/mainwindow.cpp
@@ -1245,8 +1245,8 @@ QString MainWindow::filter()
f += "Suunto (*.sde *.SDE *.db *.DB);;";
f += "UDCF (*.udcf *.UDCF);;";
f += "UDDF (*.uddf *.UDDF);;";
- f += "XML (*.xml *.XML)";
- f += "Divesoft (*.dlf *.DLF)";
+ f += "XML (*.xml *.XML);;";
+ f += "Divesoft (*.dlf *.DLF);;";
f += "Datatrak/WLog Files (*.log *.LOG)";
return f;