diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-01-06 16:30:59 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-06 19:37:48 -0800 |
commit | 58e21a61606a3594be2a17f044342f7cb031c628 (patch) | |
tree | b524624f50f7586c5ee334de042c6b6f318aed5a /qt-ui/divelogimportdialog.h | |
parent | 79e81d70ec009a99354676bff1aaa36fc5707233 (diff) | |
download | subsurface-58e21a61606a3594be2a17f044342f7cb031c628.tar.gz |
Add the setColumnValues() method
This method populates the model with a few lines of the CSV data to help
the user to define what each column is.
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 b5eaa906d..a2283906f 100644 --- a/qt-ui/divelogimportdialog.h +++ b/qt-ui/divelogimportdialog.h @@ -34,8 +34,8 @@ public: ColumnNameResult(QObject *parent); bool setData(const QModelIndex &index, const QVariant &value, int role); QVariant data(const QModelIndex &index, int role) const; - int rowCount(const QModelIndex &parent) const; - int columnCount(const QModelIndex &parent) const; + int rowCount(const QModelIndex &parent = QModelIndex()) const; + int columnCount(const QModelIndex &parent = QModelIndex()) const; void setColumnValues(QList<QStringList> columns); private: QList<QStringList> columnValues; |