diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-01-06 16:11:27 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-06 19:37:44 -0800 |
commit | ba30e938b3580bc04eda860b67e757aa3ecae305 (patch) | |
tree | 030624f48a2460f0b68bac7dc8287692e25817a4 /qt-ui/mainwindow.cpp | |
parent | f1b90813cf2a76cd2f13344af8b240af46ed683f (diff) | |
download | subsurface-ba30e938b3580bc04eda860b67e757aa3ecae305.tar.gz |
Another skeleton: LoadFileContents
Also, do not pass QStringLists by pointer, uneeded.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.cpp')
-rw-r--r-- | qt-ui/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index 2ae9b74f9..9186b7a0a 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -1361,7 +1361,7 @@ void MainWindow::on_actionImportDiveLog_triggered() } if (csvFiles.size()) { - DiveLogImportDialog *diveLogImport = new DiveLogImportDialog(&csvFiles, this); + DiveLogImportDialog *diveLogImport = new DiveLogImportDialog(csvFiles, this); diveLogImport->show(); process_dives(true, false); refreshDisplay(); |