diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-07-17 19:19:35 -0400 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-07-17 19:19:35 -0400 |
commit | 2ee5e732c456c722b1456bdbc8b203098681b4de (patch) | |
tree | b71550eb13832ea37d3a5a5ae52b6990b28f2da2 /src/dpiapi.c | |
parent | d53595dd6d4a1d6431aa8d439c63e30cb27525a0 (diff) |
Added a_Dpip_get_attr_l() to DPIP's API
Diffstat (limited to 'src/dpiapi.c')
-rw-r--r-- | src/dpiapi.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/dpiapi.c b/src/dpiapi.c index 705d6777..2068146c 100644 --- a/src/dpiapi.c +++ b/src/dpiapi.c @@ -61,12 +61,12 @@ void a_Dpiapi_dialog(BrowserWindow *bw, char *server, char *dpip_tag) /* other options can be parsed the same way */ dpip_tag_len = strlen(dpip_tag); - question = a_Dpip_get_attr(dpip_tag, dpip_tag_len, "msg"); - alt1 = a_Dpip_get_attr(dpip_tag, dpip_tag_len, "alt1"); - alt2 = a_Dpip_get_attr(dpip_tag, dpip_tag_len, "alt2"); - alt3 = a_Dpip_get_attr(dpip_tag, dpip_tag_len, "alt3"); - alt4 = a_Dpip_get_attr(dpip_tag, dpip_tag_len, "alt4"); - alt5 = a_Dpip_get_attr(dpip_tag, dpip_tag_len, "alt5"); + question = a_Dpip_get_attr_l(dpip_tag, dpip_tag_len, "msg"); + alt1 = a_Dpip_get_attr_l(dpip_tag, dpip_tag_len, "alt1"); + alt2 = a_Dpip_get_attr_l(dpip_tag, dpip_tag_len, "alt2"); + alt3 = a_Dpip_get_attr_l(dpip_tag, dpip_tag_len, "alt3"); + alt4 = a_Dpip_get_attr_l(dpip_tag, dpip_tag_len, "alt4"); + alt5 = a_Dpip_get_attr_l(dpip_tag, dpip_tag_len, "alt5"); ret = a_Dialog_choice5(question, alt1, alt2, alt3, alt4, alt5); /* As choice5 is modal, call the callback function directly. */ |