diff options
author | Leandro Pereira <leandro@hardinfo.org> | 2020-10-09 18:29:05 -0700 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2020-10-09 18:29:22 -0700 |
commit | e4fe32824ffca45c1fb1c408152094a3d4e486ef (patch) | |
tree | e993c556766237853eb91a13db94772c60601038 /shell/loadgraph.c | |
parent | 2180e3e38618f648093e3dfcdcd458d6aedad71e (diff) |
Add stub to set title in GTK3 load graph
Diffstat (limited to 'shell/loadgraph.c')
-rw-r--r-- | shell/loadgraph.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/loadgraph.c b/shell/loadgraph.c index cde0fa06..849382f6 100644 --- a/shell/loadgraph.c +++ b/shell/loadgraph.c @@ -89,13 +89,13 @@ gchar *load_graph_get_data_suffix(LoadGraph * lg) return lg->suffix; } -void load_graph_set_title(LoadGraph * lg, gchar * title) +void load_graph_set_title(LoadGraph * lg, const gchar * title) { g_free(lg->title); lg->title = g_strdup(title); } -gchar *load_graph_get_title(LoadGraph *lg) +const gchar *load_graph_get_title(LoadGraph *lg) { if (lg != NULL) return lg->title; return NULL; |