summaryrefslogtreecommitdiffstats
path: root/desktop-widgets
diff options
context:
space:
mode:
authorGravatar Monty Taylor <mordred@inaugust.com>2020-05-05 07:30:29 -0500
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-05-05 10:23:18 -0700
commitf37f42876260e804e4e990d608a8dcd21a141ba0 (patch)
treeaeb031fc6d9ecca2d94b02d928d87c68e90d3e6e /desktop-widgets
parent786963aba911bd03874a7d2c0e6c21371cc2c171 (diff)
downloadsubsurface-f37f42876260e804e4e990d608a8dcd21a141ba0.tar.gz
cleanup: capitalize use dc
It was suggested in a review of a previous patchset that we should capitalize the use of "use dc" to "Use DC" - but if we were going to do that we should do it everywhere, not just in the one place. This is the followup to do that. Signed-off-by: Monty Taylor <mordred@inaugust.com>
Diffstat (limited to 'desktop-widgets')
-rw-r--r--desktop-widgets/tab-widgets/TabDiveInformation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop-widgets/tab-widgets/TabDiveInformation.cpp b/desktop-widgets/tab-widgets/TabDiveInformation.cpp
index 87e845511..a91151fed 100644
--- a/desktop-widgets/tab-widgets/TabDiveInformation.cpp
+++ b/desktop-widgets/tab-widgets/TabDiveInformation.cpp
@@ -21,7 +21,7 @@ TabDiveInformation::TabDiveInformation(QWidget *parent) : TabBase(parent), ui(ne
{
ui->setupUi(this);
connect(&diveListNotifier, &DiveListNotifier::divesChanged, this, &TabDiveInformation::divesChanged);
- QStringList atmPressTypes { "mbar", get_depth_unit() ,tr("use dc")};
+ QStringList atmPressTypes { "mbar", get_depth_unit() ,tr("Use DC")};
ui->atmPressType->insertItems(0, atmPressTypes);
pressTypeIndex = 0;
ui->waterTypeCombo->insertItems(0, waterTypes);