aboutsummaryrefslogtreecommitdiff
path: root/shell/loadgraph.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/loadgraph.c')
-rwxr-xr-xshell/loadgraph.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/shell/loadgraph.c b/shell/loadgraph.c
index 581203f1..6dd1c3c8 100755
--- a/shell/loadgraph.c
+++ b/shell/loadgraph.c
@@ -352,7 +352,14 @@ static void _draw(LoadGraph * lg)
gtk_widget_queue_draw(lg->area);
}
-void load_graph_update(LoadGraph * lg, gdouble v)
+void load_graph_update_ex(LoadGraph *lg, guint line, gdouble value)
+{
+ /* not implemented */
+ if (line == 0)
+ load_graph_update(lg, value);
+}
+
+void load_graph_update(LoadGraph *lg, gdouble v)
{
gint i;
gint value = (gint)v;