Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/7c957b4564c9397eac9d562d14509c119c9d0ab6
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/7c957b4564c9397eac9d562d14509c119c9d0ab6
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/7c957b4564c9397eac9d562d14509c119c9d0ab6

The branch, master has been updated
       via  7c957b4564c9397eac9d562d14509c119c9d0ab6 (commit)
      from  ccb75629033e2dcb325fc39fd67cbef7d4799326 (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=7c957b4564c9397eac9d562d14509c119c9d0ab6
commit 7c957b4564c9397eac9d562d14509c119c9d0ab6
Author: Vincent Sanders <vi...@kyllikki.org>
Commit: Vincent Sanders <vi...@kyllikki.org>

    remove pointless box structure

diff --git a/desktop/selection.c b/desktop/selection.c
index 332e9dafa..8b1f127c4 100644
--- a/desktop/selection.c
+++ b/desktop/selection.c
@@ -54,7 +54,6 @@ typedef enum {
 
 struct selection {
        struct content *c;
-       struct box *root;
 
        unsigned max_idx;  /* total bytes in text representation */
 
@@ -257,7 +256,6 @@ struct selection *selection_create(struct content *c)
        sel = calloc(1, sizeof(struct selection));
        if (sel) {
                sel->c = c;
-               sel->root = NULL;
                sel->drag_state = DRAG_NONE;
                sel->max_idx = 0;
                selection_clear(sel, false);


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

Summary of changes:
 desktop/selection.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/desktop/selection.c b/desktop/selection.c
index 332e9dafa..8b1f127c4 100644
--- a/desktop/selection.c
+++ b/desktop/selection.c
@@ -54,7 +54,6 @@ typedef enum {
 
 struct selection {
        struct content *c;
-       struct box *root;
 
        unsigned max_idx;  /* total bytes in text representation */
 
@@ -257,7 +256,6 @@ struct selection *selection_create(struct content *c)
        sel = calloc(1, sizeof(struct selection));
        if (sel) {
                sel->c = c;
-               sel->root = NULL;
                sel->drag_state = DRAG_NONE;
                sel->max_idx = 0;
                selection_clear(sel, false);


-- 
NetSurf Browser
_______________________________________________
netsurf-commits mailing list -- netsurf-commits@netsurf-browser.org
To unsubscribe send an email to netsurf-commits-le...@netsurf-browser.org

Reply via email to