diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-01-07 12:27:20 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-07 12:27:20 -0800 |
commit | 1c06252c00e44a4f877da4441761932a28a6c3b8 (patch) | |
tree | 1aacb339de90d633ee7266c86ca4e6a89a0a3c03 /qt-ui/divelogimportdialog.h | |
parent | 816367eb06820f0a9db138d2323a05d77a446808 (diff) | |
download | subsurface-1c06252c00e44a4f877da4441761932a28a6c3b8.tar.gz |
CVS import UI: use my own match function
This makes the code simpler and allows us to do a much better job matching
the column names.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelogimportdialog.h')
-rw-r--r-- | qt-ui/divelogimportdialog.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/divelogimportdialog.h b/qt-ui/divelogimportdialog.h index 7e43434cd..9a75bb14d 100644 --- a/qt-ui/divelogimportdialog.h +++ b/qt-ui/divelogimportdialog.h @@ -24,6 +24,7 @@ public: 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 mymatch(QString value) const; private: QStringList columnNames; }; |