diff options
Diffstat (limited to 'commands/command.cpp')
-rw-r--r-- | commands/command.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/commands/command.cpp b/commands/command.cpp index 721f51c64..aa1d18183 100644 --- a/commands/command.cpp +++ b/commands/command.cpp @@ -145,6 +145,11 @@ void purgeUnusedDiveSites() execute(new PurgeUnusedDiveSites); } +void applyGPSFixes(const std::vector<DiveAndLocation> &fixes) +{ + execute(new ApplyGPSFixes(fixes)); +} + // Execute an edit-command and return number of edited dives static int execute_edit(EditDivesBase *cmd) { |