diff options
Diffstat (limited to 'commands/command_divelist.h')
-rw-r--r-- | commands/command_divelist.h | 4 |
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; }; |