aboutsummaryrefslogtreecommitdiffstats
path: root/commands/command_divelist.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-01-03 16:04:54 +0100
committerGravatar bstoeger <32835590+bstoeger@users.noreply.github.com>2020-03-06 10:00:13 +0100
commitc495a49b1b044ab54ee60d4b0db14caa3f8e3de1 (patch)
treea32ec02598b1cc53690c72f7c783c25e8ce38096 /commands/command_divelist.h
parent62adc24d150b0566b9cc9ab449de4ed30ac2ab62 (diff)
downloadsubsurface-c495a49b1b044ab54ee60d4b0db14caa3f8e3de1.tar.gz
Cleanup: use getDiveSelection() for shifting time
There are two cases where dive-times are shifted: in an explicit dialog and when editing the date/time of a dive. In each of these cases, the selected dives were collected manually. Instead use the getDiveSelection() function. Since this returns a std::vector, change the argument of Command::ShiftTime() to such a std::vector. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'commands/command_divelist.h')
-rw-r--r--commands/command_divelist.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/command_divelist.h b/commands/command_divelist.h
index 20d031f54..f1bbc7a91 100644
--- a/commands/command_divelist.h
+++ b/commands/command_divelist.h
@@ -133,14 +133,14 @@ private:
class ShiftTime : public DiveListBase {
public:
- ShiftTime(const QVector<dive *> &changedDives, int amount);
+ ShiftTime(std::vector<dive *> changedDives, int amount);
private:
void undoit() override;
void redoit() override;
bool workToBeDone() override;
// For redo and undo
- QVector<dive *> diveList;
+ std::vector<dive *> diveList;
int timeChanged;
};