Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/936cb3ce0c746011af67c2b4f0e6df5070c9d9e6
...commit
http://git.netsurf-browser.org/netsurf.git/commit/936cb3ce0c746011af67c2b4f0e6df5070c9d9e6
...tree
http://git.netsurf-browser.org/netsurf.git/tree/936cb3ce0c746011af67c2b4f0e6df5070c9d9e6
The branch, master has been updated
via 936cb3ce0c746011af67c2b4f0e6df5070c9d9e6 (commit)
via 243659763bfc97800f94332b941cc7195f2edde1 (commit)
from b15b204f4958f039573868c02093f3aa2ae48e98 (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=936cb3ce0c746011af67c2b4f0e6df5070c9d9e6
commit 936cb3ce0c746011af67c2b4f0e6df5070c9d9e6
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>
remove shadow scale variable from beos
diff --git a/frontends/beos/window.cpp b/frontends/beos/window.cpp
index dda2556..e330a82 100644
--- a/frontends/beos/window.cpp
+++ b/frontends/beos/window.cpp
@@ -92,8 +92,6 @@ struct gui_window {
/* Keep gui_windows in a list for cleanup later */
struct gui_window *next, *prev;
-
- float scale;
};
@@ -336,11 +334,6 @@ struct browser_window *nsbeos_get_browser_for_gui(struct
gui_window *g)
return g->bw;
}
-float nsbeos_get_scale_for_gui(struct gui_window *g)
-{
- return g->scale;
-}
-
/* Create a gui_window */
static struct gui_window *gui_window_create(struct browser_window *bw,
struct gui_window *existing,
@@ -360,7 +353,6 @@ static struct gui_window *gui_window_create(struct
browser_window *bw,
g->bw = bw;
g->mouse.state = 0;
g->current_pointer = GUI_POINTER_DEFAULT;
- g->scale = browser_window_get_scale(bw);
g->careth = 0;
g->pending_resizes = 0;
@@ -687,7 +679,6 @@ void nsbeos_dispatch_event(BMessage *message)
void nsbeos_window_expose_event(BView *view, gui_window *g, BMessage *message)
{
BRect updateRect;
- //float scale = g->scale;
struct rect clip;
struct redraw_context ctx = { true, true, &nsbeos_plotters };
diff --git a/frontends/beos/window.h b/frontends/beos/window.h
index 928acca..f8726a8 100644
--- a/frontends/beos/window.h
+++ b/frontends/beos/window.h
@@ -72,8 +72,6 @@ struct beos_scaffolding *nsbeos_get_scaffold(struct
gui_window *g);
struct browser_window *nsbeos_get_browser_for_gui(struct gui_window *g);
-float nsbeos_get_scale_for_gui(struct gui_window *g);
-
int nsbeos_gui_window_update_targets(struct gui_window *g);
void nsbeos_window_destroy_browser(struct gui_window *g);
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=243659763bfc97800f94332b941cc7195f2edde1
commit 243659763bfc97800f94332b941cc7195f2edde1
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>
remove shadow scale variable from atari
diff --git a/frontends/atari/gui.h b/frontends/atari/gui.h
index 9c9aaaa..b10aef7 100644
--- a/frontends/atari/gui.h
+++ b/frontends/atari/gui.h
@@ -122,7 +122,6 @@ struct s_gui_win_root
CMP_TOOLBAR toolbar;
CMP_STATUSBAR statusbar;
struct s_focus_info focus;
- float scale;
char * title;
struct bitmap * icon;
struct gui_window *active_gui_window;
diff --git a/frontends/atari/rootwin.c b/frontends/atari/rootwin.c
index 6576eac..8fb3ec0 100644
--- a/frontends/atari/rootwin.c
+++ b/frontends/atari/rootwin.c
@@ -288,8 +288,6 @@ int window_create(struct gui_window * gw,
assert(gw->browser);
gw->browser->bw = bw;
- gw->scale = browser_window_get_scale(bw);
-
/* create statusbar component: */
if(sb) {
-----------------------------------------------------------------------
Summary of changes:
frontends/atari/gui.h | 1 -
frontends/atari/rootwin.c | 2 --
frontends/beos/window.cpp | 9 ---------
frontends/beos/window.h | 2 --
4 files changed, 14 deletions(-)
diff --git a/frontends/atari/gui.h b/frontends/atari/gui.h
index 9c9aaaa..b10aef7 100644
--- a/frontends/atari/gui.h
+++ b/frontends/atari/gui.h
@@ -122,7 +122,6 @@ struct s_gui_win_root
CMP_TOOLBAR toolbar;
CMP_STATUSBAR statusbar;
struct s_focus_info focus;
- float scale;
char * title;
struct bitmap * icon;
struct gui_window *active_gui_window;
diff --git a/frontends/atari/rootwin.c b/frontends/atari/rootwin.c
index 6576eac..8fb3ec0 100644
--- a/frontends/atari/rootwin.c
+++ b/frontends/atari/rootwin.c
@@ -288,8 +288,6 @@ int window_create(struct gui_window * gw,
assert(gw->browser);
gw->browser->bw = bw;
- gw->scale = browser_window_get_scale(bw);
-
/* create statusbar component: */
if(sb) {
diff --git a/frontends/beos/window.cpp b/frontends/beos/window.cpp
index dda2556..e330a82 100644
--- a/frontends/beos/window.cpp
+++ b/frontends/beos/window.cpp
@@ -92,8 +92,6 @@ struct gui_window {
/* Keep gui_windows in a list for cleanup later */
struct gui_window *next, *prev;
-
- float scale;
};
@@ -336,11 +334,6 @@ struct browser_window *nsbeos_get_browser_for_gui(struct
gui_window *g)
return g->bw;
}
-float nsbeos_get_scale_for_gui(struct gui_window *g)
-{
- return g->scale;
-}
-
/* Create a gui_window */
static struct gui_window *gui_window_create(struct browser_window *bw,
struct gui_window *existing,
@@ -360,7 +353,6 @@ static struct gui_window *gui_window_create(struct
browser_window *bw,
g->bw = bw;
g->mouse.state = 0;
g->current_pointer = GUI_POINTER_DEFAULT;
- g->scale = browser_window_get_scale(bw);
g->careth = 0;
g->pending_resizes = 0;
@@ -687,7 +679,6 @@ void nsbeos_dispatch_event(BMessage *message)
void nsbeos_window_expose_event(BView *view, gui_window *g, BMessage *message)
{
BRect updateRect;
- //float scale = g->scale;
struct rect clip;
struct redraw_context ctx = { true, true, &nsbeos_plotters };
diff --git a/frontends/beos/window.h b/frontends/beos/window.h
index 928acca..f8726a8 100644
--- a/frontends/beos/window.h
+++ b/frontends/beos/window.h
@@ -72,8 +72,6 @@ struct beos_scaffolding *nsbeos_get_scaffold(struct
gui_window *g);
struct browser_window *nsbeos_get_browser_for_gui(struct gui_window *g);
-float nsbeos_get_scale_for_gui(struct gui_window *g);
-
int nsbeos_gui_window_update_targets(struct gui_window *g);
void nsbeos_window_destroy_browser(struct gui_window *g);
--
NetSurf Browser
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org