summaryrefslogtreecommitdiff
path: root/ufo/ufo-remote-task.c
diff options
context:
space:
mode:
authorSven Werchner <Sven.Werchner@t-online.de>2014-08-20 12:13:59 +0200
committerSven Werchner <Sven.Werchner@t-online.de>2014-08-20 12:13:59 +0200
commitd25625b5d358c3858e37d3fb357d569ee8086df4 (patch)
treeaddd03c5dab138cd9ef05a8afba1c4c0d4ddb228 /ufo/ufo-remote-task.c
parent87c449b119d2088fde9122884d0ece82c127b075 (diff)
Fixes in remote task performing
Diffstat (limited to 'ufo/ufo-remote-task.c')
-rw-r--r--ufo/ufo-remote-task.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/ufo/ufo-remote-task.c b/ufo/ufo-remote-task.c
index 373df44..dca9b94 100644
--- a/ufo/ufo-remote-task.c
+++ b/ufo/ufo-remote-task.c
@@ -91,23 +91,20 @@ ufo_remote_task_get_requisition (UfoTask *task,
static guint
ufo_remote_task_get_num_inputs (UfoTask *task)
{
- ufo_remote_node_get_num_inputs (UFO_REMOTE_TASK_GET_PRIVATE (task)->remote);
- return 0;
+ return ufo_remote_node_get_num_inputs (UFO_REMOTE_TASK_GET_PRIVATE (task)->remote);
}
static guint
ufo_remote_task_get_num_dimensions (UfoTask *task,
guint input)
{
- ufo_remote_node_get_num_dimensions (UFO_REMOTE_TASK_GET_PRIVATE (task)->remote, input);
- return 0;
+ return ufo_remote_node_get_num_dimensions (UFO_REMOTE_TASK_GET_PRIVATE (task)->remote, input);
}
static guint
ufo_remote_task_get_mode (UfoTask *task)
{
- ufo_remote_node_get_mode (UFO_REMOTE_TASK_GET_PRIVATE (task)->remote);
- return UFO_TASK_MODE_INVALID;
+ return ufo_remote_node_get_mode (UFO_REMOTE_TASK_GET_PRIVATE (task)->remote);
}
static gboolean