diff options
author | Benjamin <nystire@gmail.com> | 2013-10-04 02:04:51 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-10-04 09:40:56 -0700 |
commit | fb5ae28865fec02b02f2b1be27192de2d2a9b389 (patch) | |
tree | 8e70323da996ee7fbd240757e1c4d5a1b2461779 /qt-ui/maintab.cpp | |
parent | 9961cf13b13b03803b2c96ec5d2221cf18d46588 (diff) | |
download | subsurface-fb5ae28865fec02b02f2b1be27192de2d2a9b389.tar.gz |
Correct spelling of "weight" throughout the code.
"Weight" was misspelled "weigth" in several places in the code
and comments.
Signed-off-by: Benjamin Fogel <nystire@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/maintab.cpp')
-rw-r--r-- | qt-ui/maintab.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index ae0de914f..2498a0d97 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -74,7 +74,7 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent), connect(ui.weights, SIGNAL(addButtonClicked()), this, SLOT(addWeight_clicked())); connect(ui.cylinders->view(), SIGNAL(clicked(QModelIndex)), this, SLOT(editCylinderWidget(QModelIndex))); - connect(ui.weights->view(), SIGNAL(clicked(QModelIndex)), this, SLOT(editWeigthWidget(QModelIndex))); + connect(ui.weights->view(), SIGNAL(clicked(QModelIndex)), this, SLOT(editWeightWidget(QModelIndex))); connect(ui.notesButtonBox, SIGNAL(accepted()), this, SLOT(acceptChanges())); connect(ui.notesButtonBox, SIGNAL(rejected()), this, SLOT(rejectChanges())); connect(ui.equipmentButtonBox, SIGNAL(accepted()), this, SLOT(acceptChanges())); @@ -167,7 +167,7 @@ void MainTab::enableEdition() notesBackup[mydive].cylinders[i] = mydive->cylinder[i]; } for (int i = 0; i < MAX_WEIGHTSYSTEMS; i++) { - notesBackup[mydive].weigthsystem[i] = mydive->weightsystem[i]; + notesBackup[mydive].weightsystem[i] = mydive->weightsystem[i]; } } editMode = DIVE; @@ -561,7 +561,7 @@ void MainTab::rejectChanges() mydive->cylinder[i] = notesBackup[mydive].cylinders[i]; } for (int i = 0; i < MAX_WEIGHTSYSTEMS; i++) { - mydive->weightsystem[i] = notesBackup[mydive].weigthsystem[i]; + mydive->weightsystem[i] = notesBackup[mydive].weightsystem[i]; } } multiEditEquipmentPlaceholder = *get_dive(selected_dive); @@ -726,7 +726,7 @@ void MainTab::editCylinderWidget(const QModelIndex& index) ui.cylinders->edit(index); } -void MainTab::editWeigthWidget(const QModelIndex& index) +void MainTab::editWeightWidget(const QModelIndex& index) { if (editMode == NONE) enableEdition(); |