diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-07-17 08:39:49 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-07-17 08:39:49 -0700 |
commit | 2a4cacda2174f1fdacaf042c975204f40e7dd0d0 (patch) | |
tree | 81723e2418f4556e1a56b07eda81b2d5669ee2e1 /qt-models/divelocationmodel.cpp | |
parent | c78e4fb92d9b9a488a794d7485fe1214f50f80fe (diff) | |
download | subsurface-2a4cacda2174f1fdacaf042c975204f40e7dd0d0.tar.gz |
Better invalid dive site name
This should ensure that no one ever might end up with our "invalid" name
for real. And it allows us to more easily test elsewhere for that invalid
value.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models/divelocationmodel.cpp')
-rw-r--r-- | qt-models/divelocationmodel.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/qt-models/divelocationmodel.cpp b/qt-models/divelocationmodel.cpp index 05d7df709..5aa3a3ac8 100644 --- a/qt-models/divelocationmodel.cpp +++ b/qt-models/divelocationmodel.cpp @@ -69,9 +69,10 @@ QVariant LocationInformationModel::data(const QModelIndex &index, int role) cons if (index.row() == 1) { struct dive_site *ds = get_dive_site_name_start_which_str(textField->text()); if (!ds) - return "NOT HERE"; + return INVALID_DIVE_SITE_NAME; if (QString(ds->name) == textField->text()) - return "NOT HERE"; + return INVALID_DIVE_SITE_NAME; + } return textField->text(); } |