summaryrefslogtreecommitdiffstats
path: root/src/engine/ObjectSender.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-19 19:37:12 +0000
committerDavid Robillard <d@drobilla.net>2011-04-19 19:37:12 +0000
commit375e57574e08d746c6c12255836face2066ebf4c (patch)
treea2681f6302b835c81ea74ee849227d7b9c66e3b4 /src/engine/ObjectSender.cpp
parent338ebbcd23747d3274f100b1c78caeb1d157dde0 (diff)
downloadingen-375e57574e08d746c6c12255836face2066ebf4c.tar.gz
ingen-375e57574e08d746c6c12255836face2066ebf4c.tar.bz2
ingen-375e57574e08d746c6c12255836face2066ebf4c.zip
Merge "transfer" stuff with "bundle" stuff (functionally equivalent anyway).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3166 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/ObjectSender.cpp')
-rw-r--r--src/engine/ObjectSender.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/ObjectSender.cpp b/src/engine/ObjectSender.cpp
index ae2383d6..77b6c5e3 100644
--- a/src/engine/ObjectSender.cpp
+++ b/src/engine/ObjectSender.cpp
@@ -61,7 +61,7 @@ void
ObjectSender::send_patch(ClientInterface* client, const PatchImpl* patch, bool recursive, bool bundle)
{
if (bundle)
- client->transfer_begin();
+ client->bundle_begin();
client->put(patch->path(),
patch->properties(Resource::INTERNAL),
@@ -92,7 +92,7 @@ ObjectSender::send_patch(ClientInterface* client, const PatchImpl* patch, bool r
}
if (bundle)
- client->transfer_end();
+ client->bundle_end();
}
/** Sends a node or a patch */
@@ -112,7 +112,7 @@ ObjectSender::send_node(ClientInterface* client, const NodeImpl* node, bool recu
}
if (bundle)
- client->transfer_begin();
+ client->bundle_begin();
client->put(node->path(), node->properties());
@@ -123,7 +123,7 @@ ObjectSender::send_node(ClientInterface* client, const NodeImpl* node, bool recu
}
if (bundle)
- client->transfer_end();
+ client->bundle_end();
}
void