mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-17 17:52:43 +03:00
Scope reduce several variables.
This commit is contained in:
parent
bbb002ee1d
commit
8ee941a7a5
@ -96,7 +96,7 @@ bool ro_gui_url_complete_keypress(struct toolbar *toolbar, uint32_t key)
|
|||||||
wimp_window_state state;
|
wimp_window_state state;
|
||||||
char *match_url;
|
char *match_url;
|
||||||
const char *url;
|
const char *url;
|
||||||
int i, lines;
|
int i;
|
||||||
int old_selection;
|
int old_selection;
|
||||||
int height;
|
int height;
|
||||||
os_error *error;
|
os_error *error;
|
||||||
@ -144,7 +144,7 @@ bool ro_gui_url_complete_keypress(struct toolbar *toolbar, uint32_t key)
|
|||||||
(strcmp(match_url, url_complete_matched_string))) {
|
(strcmp(match_url, url_complete_matched_string))) {
|
||||||
|
|
||||||
/* memorize the current matches */
|
/* memorize the current matches */
|
||||||
lines = MAXIMUM_VISIBLE_LINES;
|
int lines = MAXIMUM_VISIBLE_LINES;
|
||||||
if (lines > url_complete_matches_available)
|
if (lines > url_complete_matches_available)
|
||||||
lines = url_complete_matches_available;
|
lines = url_complete_matches_available;
|
||||||
if (url_complete_matches) {
|
if (url_complete_matches) {
|
||||||
@ -528,8 +528,7 @@ void ro_gui_url_complete_redraw(wimp_draw *redraw)
|
|||||||
{
|
{
|
||||||
osbool more;
|
osbool more;
|
||||||
os_error *error;
|
os_error *error;
|
||||||
int clip_y0, clip_y1, origin_y;
|
int line;
|
||||||
int first_line, last_line, line;
|
|
||||||
const struct url_data *data;
|
const struct url_data *data;
|
||||||
int type;
|
int type;
|
||||||
|
|
||||||
@ -564,9 +563,10 @@ void ro_gui_url_complete_redraw(wimp_draw *redraw)
|
|||||||
/* redraw */
|
/* redraw */
|
||||||
more = wimp_redraw_window(redraw);
|
more = wimp_redraw_window(redraw);
|
||||||
while (more) {
|
while (more) {
|
||||||
origin_y = redraw->box.y1 - redraw->yscroll;
|
int first_line, last_line;
|
||||||
clip_y0 = redraw->clip.y0 - origin_y;
|
int origin_y = redraw->box.y1 - redraw->yscroll;
|
||||||
clip_y1 = redraw->clip.y1 - origin_y;
|
int clip_y0 = redraw->clip.y0 - origin_y;
|
||||||
|
int clip_y1 = redraw->clip.y1 - origin_y;
|
||||||
|
|
||||||
first_line = (-clip_y1) / 44;
|
first_line = (-clip_y1) / 44;
|
||||||
last_line = (-clip_y0 + 43) / 44;
|
last_line = (-clip_y0 + 43) / 44;
|
||||||
@ -656,9 +656,8 @@ bool ro_gui_url_complete_click(wimp_pointer *pointer)
|
|||||||
{
|
{
|
||||||
wimp_window_state state;
|
wimp_window_state state;
|
||||||
os_error *error;
|
os_error *error;
|
||||||
int selection, old_selection;
|
int selection;
|
||||||
struct gui_window *g;
|
struct gui_window *g;
|
||||||
const char *url;
|
|
||||||
|
|
||||||
if ((mouse_x == pointer->pos.x) && (mouse_y == pointer->pos.y) &&
|
if ((mouse_x == pointer->pos.x) && (mouse_y == pointer->pos.y) &&
|
||||||
(!pointer->buttons))
|
(!pointer->buttons))
|
||||||
@ -678,7 +677,11 @@ bool ro_gui_url_complete_click(wimp_pointer *pointer)
|
|||||||
|
|
||||||
selection = (state.visible.y1 - pointer->pos.y - state.yscroll) / 44;
|
selection = (state.visible.y1 - pointer->pos.y - state.yscroll) / 44;
|
||||||
if (selection != url_complete_matches_selection) {
|
if (selection != url_complete_matches_selection) {
|
||||||
|
int old_selection;
|
||||||
|
|
||||||
if (url_complete_matches_selection == -1) {
|
if (url_complete_matches_selection == -1) {
|
||||||
|
const char *url;
|
||||||
|
|
||||||
g = ro_gui_window_lookup(url_complete_parent);
|
g = ro_gui_window_lookup(url_complete_parent);
|
||||||
if (!g)
|
if (!g)
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user