Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/6d62a068995fb1a50777e90c0b0f36a15eda0903
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/6d62a068995fb1a50777e90c0b0f36a15eda0903
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/6d62a068995fb1a50777e90c0b0f36a15eda0903

The branch, master has been updated
       via  6d62a068995fb1a50777e90c0b0f36a15eda0903 (commit)
      from  44e5aea7b50ab80ea2882bc89b0acf25f1b7730d (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/commit/?id=6d62a068995fb1a50777e90c0b0f36a15eda0903
commit 6d62a068995fb1a50777e90c0b0f36a15eda0903
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>

    Amiga: correct schedule parameter

diff --git a/frontends/amiga/pageinfo.c b/frontends/amiga/pageinfo.c
index 79e3ac6..54de0d0 100644
--- a/frontends/amiga/pageinfo.c
+++ b/frontends/amiga/pageinfo.c
@@ -100,7 +100,7 @@ ami_pageinfo_event(struct ami_corewindow *ami_cw, ULONG 
result)
 {
        if((result & WMHI_CLASSMASK) == WMHI_INACTIVE) {
                /* Window went inactive, so schedule to close it */
-               ami_schedule(0, ami_pageinfo_close_cb, pageinfo_win);
+               ami_schedule(0, ami_pageinfo_close_cb, ami_cw);
                /* NB: do not return TRUE here as we're still open for now */
        }
        return FALSE;


-----------------------------------------------------------------------

Summary of changes:
 frontends/amiga/pageinfo.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontends/amiga/pageinfo.c b/frontends/amiga/pageinfo.c
index 79e3ac6..54de0d0 100644
--- a/frontends/amiga/pageinfo.c
+++ b/frontends/amiga/pageinfo.c
@@ -100,7 +100,7 @@ ami_pageinfo_event(struct ami_corewindow *ami_cw, ULONG 
result)
 {
        if((result & WMHI_CLASSMASK) == WMHI_INACTIVE) {
                /* Window went inactive, so schedule to close it */
-               ami_schedule(0, ami_pageinfo_close_cb, pageinfo_win);
+               ami_schedule(0, ami_pageinfo_close_cb, ami_cw);
                /* NB: do not return TRUE here as we're still open for now */
        }
        return FALSE;


-- 
NetSurf Browser
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to