From a8b36b5637acb3fa8eb29ef0f45bd11653f412fa Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 16 Aug 2008 03:23:15 +0000 Subject: Factor out common store functionality. Make store is-a Table and ditch store->objects() thing everywhere. Use a separate store in the client (fix ingen -eg). git-svn-id: http://svn.drobilla.net/lad/ingen@1397 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/client/PatchModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libs/client/PatchModel.cpp') diff --git a/src/libs/client/PatchModel.cpp b/src/libs/client/PatchModel.cpp index 360707d3..20a47406 100644 --- a/src/libs/client/PatchModel.cpp +++ b/src/libs/client/PatchModel.cpp @@ -202,7 +202,7 @@ PatchModel::child_name_offset(ClientStore& store, ss << base_name; if (offset > 0) ss << "_" << offset; - if (store.find(parent->path().base() + ss.str()) == store.objects().end()) + if (store.find(parent->path().base() + ss.str()) == store.end()) break; else if (offset == 0) offset = 2; -- cgit v1.2.1