aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/profilewidget2.cpp
diff options
context:
space:
mode:
authorGravatar Tim Wootton <tim@tee-jay.demon.co.uk>2014-07-11 18:39:05 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-07-11 10:44:41 -0700
commit9b5048034fdbe28d3d466f951fcd5de371694566 (patch)
treeac32083bbeeaebbe7a20cd0757a7f5597ddf7300 /qt-ui/profile/profilewidget2.cpp
parent38c402d9ad58bf684530d77c86a6426a12e58f64 (diff)
downloadsubsurface-9b5048034fdbe28d3d466f951fcd5de371694566.tar.gz
profile capitalisation
Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/profilewidget2.cpp')
-rw-r--r--qt-ui/profile/profilewidget2.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp
index 298fcd048..e40a73235 100644
--- a/qt-ui/profile/profilewidget2.cpp
+++ b/qt-ui/profile/profilewidget2.cpp
@@ -905,7 +905,7 @@ void ProfileWidget2::contextMenuEvent(QContextMenuEvent *event)
}
}
// create the profile context menu
- QMenu *gasChange = m.addMenu(tr("Add Gas Change"));
+ QMenu *gasChange = m.addMenu(tr("Add gas change"));
GasSelectionModel *model = GasSelectionModel::instance();
model->repopulate();
int rowCount = model->rowCount();
@@ -916,11 +916,11 @@ void ProfileWidget2::contextMenuEvent(QContextMenuEvent *event)
action->setData(event->globalPos());
gasChange->addAction(action);
}
- QAction *action = m.addAction(tr("Add Bookmark"), this, SLOT(addBookmark()));
+ QAction *action = m.addAction(tr("Add bookmark"), this, SLOT(addBookmark()));
action->setData(event->globalPos());
if (DiveEventItem *item = dynamic_cast<DiveEventItem *>(sceneItem)) {
action = new QAction(&m);
- action->setText(tr("Remove Event"));
+ action->setText(tr("Remove event"));
action->setData(QVariant::fromValue<void *>(item)); // so we know what to remove.
connect(action, SIGNAL(triggered(bool)), this, SLOT(removeEvent()));
m.addAction(action);