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/divelogimportdialog.h | |
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/divelogimportdialog.h')
-rw-r--r-- | qt-ui/divelogimportdialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/divelogimportdialog.h b/qt-ui/divelogimportdialog.h index 06052f58b..bca7ecc36 100644 --- a/qt-ui/divelogimportdialog.h +++ b/qt-ui/divelogimportdialog.h @@ -73,7 +73,7 @@ class DiveLogImportDialog : public QDialog { Q_OBJECT public: - explicit DiveLogImportDialog(QStringList *fn, QWidget *parent = 0); + explicit DiveLogImportDialog(QStringList fn, QWidget *parent = 0); ~DiveLogImportDialog(); private @@ -81,7 +81,7 @@ slots: void on_buttonBox_accepted(); void on_knownImports_currentIndexChanged(int index); void unknownImports(); - + void loadFileContents(); private: bool selector; QStringList fileNames; |