text: Move some locals into the closest scope

This commit is contained in:
Timm Bäder 2019-07-15 05:38:25 +02:00
parent 70b0f712ad
commit 4bb4a98493

View File

@ -4382,15 +4382,12 @@ gtk_text_draw_cursor (GtkText *self,
PangoLayout *layout; PangoLayout *layout;
const char *text; const char *text;
int x, y; int x, y;
int width, height;
context = gtk_widget_get_style_context (widget); context = gtk_widget_get_style_context (widget);
layout = gtk_text_ensure_layout (self, TRUE); layout = gtk_text_ensure_layout (self, TRUE);
text = pango_layout_get_text (layout); text = pango_layout_get_text (layout);
gtk_text_get_layout_offsets (self, &x, &y); gtk_text_get_layout_offsets (self, &x, &y);
width = gtk_widget_get_width (widget);
height = gtk_widget_get_height (widget);
if (type == CURSOR_DND) if (type == CURSOR_DND)
cursor_index = g_utf8_offset_to_pointer (text, priv->dnd_position) - text; cursor_index = g_utf8_offset_to_pointer (text, priv->dnd_position) - text;
@ -4410,6 +4407,8 @@ gtk_text_draw_cursor (GtkText *self,
} }
else /* overwrite_mode */ else /* overwrite_mode */
{ {
int width = gtk_widget_get_width (widget);
int height = gtk_widget_get_height (widget);
graphene_rect_t bounds; graphene_rect_t bounds;
bounds.origin.x = PANGO_PIXELS (cursor_rect.x) + x; bounds.origin.x = PANGO_PIXELS (cursor_rect.x) + x;