Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/79cde2cefbec54ea08ec854471aa06cdc5c367d6
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/79cde2cefbec54ea08ec854471aa06cdc5c367d6
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/79cde2cefbec54ea08ec854471aa06cdc5c367d6

The branch, master has been updated
       via  79cde2cefbec54ea08ec854471aa06cdc5c367d6 (commit)
      from  d6c07925417eaea27c85996bc243f93e27b1bcd0 (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=79cde2cefbec54ea08ec854471aa06cdc5c367d6
commit 79cde2cefbec54ea08ec854471aa06cdc5c367d6
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    fixup windows invalidate call

diff --git a/frontends/windows/corewindow.c b/frontends/windows/corewindow.c
index c13ff48..a121219 100644
--- a/frontends/windows/corewindow.c
+++ b/frontends/windows/corewindow.c
@@ -326,8 +326,6 @@ nsw32_cw_invalidate_area(struct core_window *cw, const 
struct rect *rect)
        RECT *redrawrectp = NULL;
        RECT redrawrect;
 
-       assert(gw != NULL);
-
        if (rect != NULL) {
                redrawrectp = &redrawrect;
 
@@ -397,7 +395,7 @@ nsw32_cw_drag_status(struct core_window *cw, 
core_window_drag_status ds)
 
 
 struct core_window_callback_table nsw32_cw_cb_table = {
-       .invalidate = nsw32_cw_invalidate,
+       .invalidate = nsw32_cw_invalidate_area,
        .update_size = nsw32_cw_update_size,
        .scroll_visible = nsw32_cw_scroll_visible,
        .get_window_dimensions = nsw32_cw_get_window_dimensions,


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

Summary of changes:
 frontends/windows/corewindow.c |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/frontends/windows/corewindow.c b/frontends/windows/corewindow.c
index c13ff48..a121219 100644
--- a/frontends/windows/corewindow.c
+++ b/frontends/windows/corewindow.c
@@ -326,8 +326,6 @@ nsw32_cw_invalidate_area(struct core_window *cw, const 
struct rect *rect)
        RECT *redrawrectp = NULL;
        RECT redrawrect;
 
-       assert(gw != NULL);
-
        if (rect != NULL) {
                redrawrectp = &redrawrect;
 
@@ -397,7 +395,7 @@ nsw32_cw_drag_status(struct core_window *cw, 
core_window_drag_status ds)
 
 
 struct core_window_callback_table nsw32_cw_cb_table = {
-       .invalidate = nsw32_cw_invalidate,
+       .invalidate = nsw32_cw_invalidate_area,
        .update_size = nsw32_cw_update_size,
        .scroll_visible = nsw32_cw_scroll_visible,
        .get_window_dimensions = nsw32_cw_get_window_dimensions,


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to