1
0
Fork 0
mirror of https://github.com/subsurface/subsurface.git synced 2025-02-19 22:16:15 +00:00

Added Cochran CAN files to the Open Logbook dialog

Subsurface can now open CAN files as an alternative to importing.

Signed-off-by: John Van Ostrand <john@vanostrand.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
John Van Ostrand 2014-10-28 15:27:14 -04:00 committed by Dirk Hohndel
parent e32ba4d6d8
commit 884f653176

View file

@ -704,7 +704,7 @@ QString MainWindow::filter()
QString f;
f += "ALL ( *.ssrf *.xml *.XML *.uddf *.udcf *.UDFC *.jlb *.JLB ";
f += "*.sde *.SDE *.dld *.DLD ";
f += "*.db";
f += "*.db *.can";
f += ");;";
f += "Subsurface (*.ssrf);;";
@ -715,7 +715,8 @@ QString MainWindow::filter()
f += "SDE (*.sde *.SDE);;";
f += "DLD (*.dld *.DLD);;";
f += "DB (*.db)";
f += "DB (*.db);;";
f += "CAN (*.can)";
return f;
}