diff options
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/ClientStore.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp index ad5c6a60..a1da01c4 100644 --- a/src/client/ClientStore.cpp +++ b/src/client/ClientStore.cpp @@ -236,14 +236,14 @@ ClientStore::move(const Raul::Path& old_path, const Raul::Path& new_path) return; } - typedef Table<Raul::Path, SharedPtr<GraphObject> > Removed; + typedef Raul::Table<Raul::Path, SharedPtr<GraphObject> > Removed; iterator end = find_descendants_end(parent); SharedPtr<Removed> removed = yank(parent, end); assert(removed->size() > 0); - typedef Table<Raul::Path, SharedPtr<GraphObject> > PathTable; + typedef Raul::Table<Raul::Path, SharedPtr<GraphObject> > PathTable; for (PathTable::iterator i = removed->begin(); i != removed->end(); ++i) { const Raul::Path& child_old_path = i->first; assert(Raul::Path::descendant_comparator(old_path, child_old_path)); |