summaryrefslogtreecommitdiffstats
path: root/src/engine/QueuedEngineInterface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/QueuedEngineInterface.cpp')
-rw-r--r--src/engine/QueuedEngineInterface.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/engine/QueuedEngineInterface.cpp b/src/engine/QueuedEngineInterface.cpp
index a1192c03..7c9c2c1a 100644
--- a/src/engine/QueuedEngineInterface.cpp
+++ b/src/engine/QueuedEngineInterface.cpp
@@ -184,17 +184,17 @@ QueuedEngineInterface::put(const Path& path,
void
-QueuedEngineInterface::rename(const Path& old_path,
- const Path& new_path)
+QueuedEngineInterface::move(const Path& old_path,
+ const Path& new_path)
{
- push_queued(new RenameEvent(_engine, _responder, now(), old_path, new_path));
+ push_queued(new MoveEvent(_engine, _responder, now(), old_path, new_path));
}
void
-QueuedEngineInterface::destroy(const Path& path)
+QueuedEngineInterface::del(const Path& path)
{
- push_queued(new DestroyEvent(_engine, _responder, now(), this, path));
+ push_queued(new DeleteEvent(_engine, _responder, now(), this, path));
}