summaryrefslogtreecommitdiffstats
path: root/qt-models/divelocationmodel.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-07-15 10:37:09 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-07-15 10:37:09 -0700
commit14016f83ff992d3645e5bd8a9378380837823128 (patch)
tree7ce3c69db0b59dac15e63c776d457f4481dae6e6 /qt-models/divelocationmodel.cpp
parent9d622996bae40bf94feaa603282af973d48eeab1 (diff)
downloadsubsurface-14016f83ff992d3645e5bd8a9378380837823128.tar.gz
Better text for fake completion entry
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models/divelocationmodel.cpp')
-rw-r--r--qt-models/divelocationmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/divelocationmodel.cpp b/qt-models/divelocationmodel.cpp
index bddca8f77..8d7faa890 100644
--- a/qt-models/divelocationmodel.cpp
+++ b/qt-models/divelocationmodel.cpp
@@ -53,7 +53,7 @@ QVariant LocationInformationModel::data(const QModelIndex &index, int role) cons
return textField->text();
}
case Qt::ToolTipRole : {
- return QString(tr("Create dive site"));
+ return QString(tr("Create dive site with this name"));
}
case Qt::EditRole : return textField->text();
case Qt::DecorationRole : return QIcon(":plus");