diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-07-21 21:42:48 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-07-21 21:42:48 +0200 |
commit | bc651b0222a41edcbc40b6a26bdc8ecfe4a7f503 (patch) | |
tree | c58bf43ab4f13081ab1b25304b6870cef325e7db /src/fe-gtk/textgui.c | |
parent | 2b3e1f46e36ee0726dcf9d55593cadab9d42fcb1 (diff) |
Add extension filter for file dialogs, specify filters and starting folder for loading plugins
Diffstat (limited to 'src/fe-gtk/textgui.c')
-rw-r--r-- | src/fe-gtk/textgui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-gtk/textgui.c b/src/fe-gtk/textgui.c index 604da44b..fbee6590 100644 --- a/src/fe-gtk/textgui.c +++ b/src/fe-gtk/textgui.c @@ -302,7 +302,7 @@ pevent_save_cb (GtkWidget * wid, void *data) if (data) { gtkutil_file_req (_("Print Texts File"), pevent_save_req_cb, NULL, - NULL, FRF_WRITE); + NULL, NULL, FRF_WRITE); return; } pevent_save (NULL); @@ -324,7 +324,7 @@ pevent_load_req_cb (void *arg1, char *file) static void pevent_load_cb (GtkWidget * wid, void *data) { - gtkutil_file_req (_("Print Texts File"), pevent_load_req_cb, NULL, NULL, 0); + gtkutil_file_req (_("Print Texts File"), pevent_load_req_cb, NULL, NULL, NULL, 0); } static void |