aboutsummaryrefslogtreecommitdiffstats
path: root/commands/command_divelist.h
diff options
context:
space:
mode:
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;
};