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 8195fbd22..d67009978 100644 --- a/commands/command.cpp +++ b/commands/command.cpp @@ -367,4 +367,9 @@ void setPictureOffset(dive *d, const QString &filename, offset_t offset) execute(new SetPictureOffset(d, filename, offset)); } +void removePictures(const std::vector<PictureListForDeletion> &pictures) +{ + execute(new RemovePictures(pictures)); +} + } // namespace Command |