diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2013-01-11 17:07:45 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2013-01-11 17:07:45 -0300 |
commit | 62ad3098f33f42dcf10d6eaff63c726bece9497e (patch) | |
tree | 8675864ca4feb21f2767a301c1f02218401d239e /src/nav.c | |
parent | b9f1468f7c49981b3c01e6308b25941aba4e4d94 (diff) |
Modified a_Dialog_choice5() to accept any number of alternatives [p37sitdu]
Diffstat (limited to 'src/nav.c')
-rw-r--r-- | src/nav.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -487,9 +487,9 @@ static void Nav_reload_callback(void *data) confirmed = 1; } else if (URL_FLAGS(h_url) & URL_Post) { /* Attempt to repost data, let's confirm... */ - choice = a_Dialog_choice5("Dillo: Repost form?", - "Repost form data?", - "No", "Yes", "Cancel", NULL, NULL); + choice = a_Dialog_choice("Dillo: Repost form?", + "Repost form data?", + "No", "Yes", "Cancel", NULL); confirmed = (choice == 2); /* "Yes" */ } |