summaryrefslogtreecommitdiff
path: root/src/gui/gui-history.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/gui-history.c')
-rw-r--r--src/gui/gui-history.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/gui-history.c b/src/gui/gui-history.c
index e122e9f08..c9071ccee 100644
--- a/src/gui/gui-history.c
+++ b/src/gui/gui-history.c
@@ -227,12 +227,13 @@ gui_history_hdata_history_cb (void *data, const char *hdata_name)
/* make C compiler happy */
(void) data;
- hdata = hdata_new (NULL, hdata_name, "prev_history", "next_history");
+ hdata = hdata_new (NULL, hdata_name, "prev_history", "next_history",
+ 0, NULL, NULL);
if (hdata)
{
- HDATA_VAR(struct t_gui_history, text, STRING, NULL, NULL);
- HDATA_VAR(struct t_gui_history, prev_history, POINTER, NULL, hdata_name);
- HDATA_VAR(struct t_gui_history, next_history, POINTER, NULL, hdata_name);
+ HDATA_VAR(struct t_gui_history, text, STRING, 0, NULL, NULL);
+ HDATA_VAR(struct t_gui_history, prev_history, POINTER, 0, NULL, hdata_name);
+ HDATA_VAR(struct t_gui_history, next_history, POINTER, 0, NULL, hdata_name);
}
return hdata;
}