diff options
author | Grace Karanja <gracie.karanja89@gmail.com> | 2015-03-17 07:48:45 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-03-17 09:53:47 -0700 |
commit | 8fe738bf6447a16184df95956afd5123e6c0770d (patch) | |
tree | d23c6535898c7f1e18695bc610a3f200d2dba5ad /qt-ui/undocommands.cpp | |
parent | d2b8fb31eb43b63731e2844fbc7a4339904fe068 (diff) | |
download | subsurface-8fe738bf6447a16184df95956afd5123e6c0770d.tar.gz |
Consistent variable names in UndoCommands class
Implements a uniform variable naming scheme in the undocommands
class.
Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/undocommands.cpp')
-rw-r--r-- | qt-ui/undocommands.cpp | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/qt-ui/undocommands.cpp b/qt-ui/undocommands.cpp index 6a15f7e03..be27e27dc 100644 --- a/qt-ui/undocommands.cpp +++ b/qt-ui/undocommands.cpp @@ -2,18 +2,18 @@ #include "mainwindow.h" #include "divelist.h" -UndoDeleteDive::UndoDeleteDive(QList<dive *> diveList) +UndoDeleteDive::UndoDeleteDive(QList<dive *> deletedDives) + : diveList(deletedDives) { - dives = diveList; setText("delete dive"); - if (dives.count() > 1) - setText(QString("delete %1 dives").arg(QString::number(dives.count()))); + if (diveList.count() > 1) + setText(QString("delete %1 dives").arg(QString::number(diveList.count()))); } void UndoDeleteDive::undo() { - for (int i = 0; i < dives.count(); i++) - record_dive(dives.at(i)); + for (int i = 0; i < diveList.count(); i++) + record_dive(diveList.at(i)); mark_divelist_changed(true); MainWindow::instance()->refreshDisplay(); } @@ -21,32 +21,31 @@ void UndoDeleteDive::undo() void UndoDeleteDive::redo() { QList<struct dive*> newList; - for (int i = 0; i < dives.count(); i++) { + for (int i = 0; i < diveList.count(); i++) { //make a copy of the dive before deleting it struct dive* d = alloc_dive(); - copy_dive(dives.at(i), d); + copy_dive(diveList.at(i), d); newList.append(d); //delete the dive - delete_single_dive(get_divenr(dives.at(i))); + delete_single_dive(get_divenr(diveList.at(i))); } mark_divelist_changed(true); MainWindow::instance()->refreshDisplay(); - dives.clear(); - dives = newList; + diveList.clear(); + diveList = newList; } -UndoShiftTime::UndoShiftTime(QList<int> diveList, int amount) +UndoShiftTime::UndoShiftTime(QList<int> changedDives, int amount) + : diveList(changedDives), timeChanged(amount) { setText("shift time"); - dives = diveList; - timeChanged = amount; } void UndoShiftTime::undo() { - for (int i = 0; i < dives.count(); i++) { - struct dive* d = get_dive_by_uniq_id(dives.at(i)); + for (int i = 0; i < diveList.count(); i++) { + struct dive* d = get_dive_by_uniq_id(diveList.at(i)); d->when -= timeChanged; } mark_divelist_changed(true); @@ -55,8 +54,8 @@ void UndoShiftTime::undo() void UndoShiftTime::redo() { - for (int i = 0; i < dives.count(); i++) { - struct dive* d = get_dive_by_uniq_id(dives.at(i)); + for (int i = 0; i < diveList.count(); i++) { + struct dive* d = get_dive_by_uniq_id(diveList.at(i)); d->when += timeChanged; } mark_divelist_changed(true); |