Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/cd28d4179523d388361fec7a17cef3333df6a81f
...commit
http://git.netsurf-browser.org/netsurf.git/commit/cd28d4179523d388361fec7a17cef3333df6a81f
...tree
http://git.netsurf-browser.org/netsurf.git/tree/cd28d4179523d388361fec7a17cef3333df6a81f
The branch, master has been updated
via cd28d4179523d388361fec7a17cef3333df6a81f (commit)
from d76e7db6fef96598713de096782468f042d519db (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commitdiff/cd28d4179523d388361fec7a17cef3333df6a81f
commit cd28d4179523d388361fec7a17cef3333df6a81f
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>
More fixing.
diff --git a/amiga/context_menu.c b/amiga/context_menu.c
index 4213eb9..a915e92 100755
--- a/amiga/context_menu.c
+++ b/amiga/context_menu.c
@@ -124,7 +124,7 @@ enum {
struct ami_file_input_menu_data {
int x;
int y;
- struct browser_window bw;
+ struct browser_window *bw;
};
struct Library *PopupMenuBase = NULL;
@@ -679,10 +679,10 @@ void ami_context_menu_show(struct gui_window_2 *gwin,int
x,int y)
if(ccdata.form_features == CTX_FORM_FILE)
{
struct ami_file_input_menu_data file_input = {
- .x = x;
- .y = y;
- .bw = gwin->bw;
- }
+ .x = x,
+ .y = y,
+ .bw = gwin->bw
+ };
ami_context_menu_add_submenu(ctxmenuobj,
CMID_SELECTFILE, &file_input);
menuhascontent = true;
}
-----------------------------------------------------------------------
Summary of changes:
amiga/context_menu.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/amiga/context_menu.c b/amiga/context_menu.c
index 4213eb9..a915e92 100755
--- a/amiga/context_menu.c
+++ b/amiga/context_menu.c
@@ -124,7 +124,7 @@ enum {
struct ami_file_input_menu_data {
int x;
int y;
- struct browser_window bw;
+ struct browser_window *bw;
};
struct Library *PopupMenuBase = NULL;
@@ -679,10 +679,10 @@ void ami_context_menu_show(struct gui_window_2 *gwin,int
x,int y)
if(ccdata.form_features == CTX_FORM_FILE)
{
struct ami_file_input_menu_data file_input = {
- .x = x;
- .y = y;
- .bw = gwin->bw;
- }
+ .x = x,
+ .y = y,
+ .bw = gwin->bw
+ };
ami_context_menu_add_submenu(ctxmenuobj,
CMID_SELECTFILE, &file_input);
menuhascontent = true;
}
--
NetSurf Browser
_______________________________________________
netsurf-commits mailing list
[email protected]
http://vlists.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org