summaryrefslogtreecommitdiffstats
path: root/commands/command.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'commands/command.cpp')
-rw-r--r--commands/command.cpp5
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)
{