diff options
Diffstat (limited to 'commands/command.cpp')
-rw-r--r-- | commands/command.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/command.cpp b/commands/command.cpp index 29702c703..721f51c64 100644 --- a/commands/command.cpp +++ b/commands/command.cpp @@ -24,7 +24,7 @@ void deleteDive(const QVector<struct dive*> &divesToDelete) execute(new DeleteDive(divesToDelete)); } -void shiftTime(const QVector<dive *> &changedDives, int amount) +void shiftTime(const std::vector<dive *> &changedDives, int amount) { execute(new ShiftTime(changedDives, amount)); } |