summaryrefslogtreecommitdiff
path: root/shell/loadgraph-uber.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/loadgraph-uber.c')
-rw-r--r--shell/loadgraph-uber.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/shell/loadgraph-uber.c b/shell/loadgraph-uber.c
index 61964b37..08f1e2b5 100644
--- a/shell/loadgraph-uber.c
+++ b/shell/loadgraph-uber.c
@@ -1,7 +1,7 @@
/*
* Christian Hergert's uber-graph (GPL3)
* wrapped in an interface compatible with
- * Leandro A. F. Pereira's loadgraph (GPL2.1).
+ * L. A. F. Pereira's loadgraph (GPL2.1).
*/
#include <string.h>
@@ -75,6 +75,10 @@ GtkWidget *load_graph_get_framed(LoadGraph * lg)
return NULL;
}
+void load_graph_set_title(LoadGraph * lg, const gchar *title)
+{
+}
+
void load_graph_clear(LoadGraph * lg)
{
int i;
@@ -82,7 +86,7 @@ void load_graph_clear(LoadGraph * lg)
for (i = 0; i < LG_MAX_LINES; i++) {
lg->cur_value[i] = UBER_LINE_GRAPH_NO_VALUE;
}
- uber_graph_scale_changed(lg->uber_widget);
+ uber_graph_scale_changed(UBER_GRAPH(lg->uber_widget));
}
}