summaryrefslogtreecommitdiffstats
path: root/src/Store.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-03-26 13:49:14 +0200
committerDavid Robillard <d@drobilla.net>2017-03-26 17:02:09 +0200
commit470936f0bf3535c688df5551025265916a5dee06 (patch)
treec52c5ccd41e666ef5737d826e3ee7de0e4aaee15 /src/Store.cpp
parentfbb4acda313ecfb69dd1e7c2f1f120072fec382d (diff)
downloadingen-470936f0bf3535c688df5551025265916a5dee06.tar.gz
ingen-470936f0bf3535c688df5551025265916a5dee06.tar.bz2
ingen-470936f0bf3535c688df5551025265916a5dee06.zip
Remove Node::set_path() method
Diffstat (limited to 'src/Store.cpp')
-rw-r--r--src/Store.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Store.cpp b/src/Store.cpp
index 1767b4f5..2c7294a8 100644
--- a/src/Store.cpp
+++ b/src/Store.cpp
@@ -109,7 +109,7 @@ Store::rename(const iterator top, const Raul::Path& new_path)
: new_path.child(
Raul::Path(i->first.substr(old_path.base().length() - 1)));
- i->second->set_path(path);
+ i->second->set_uri(path_to_uri(path));
assert(find(path) == end()); // Shouldn't be dropping objects!
insert(make_pair(path, i->second));
}