aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/w32term.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32term.c b/src/w32term.c
index e3ee34c9444..cf25b7e1080 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -8741,7 +8741,7 @@ x_draw_hollow_cursor (w, row)
8741 struct glyph_row *row; 8741 struct glyph_row *row;
8742{ 8742{
8743 struct frame *f = XFRAME (WINDOW_FRAME (w)); 8743 struct frame *f = XFRAME (WINDOW_FRAME (w));
8744 HDC hdc = get_frame_dc (f); 8744 HDC hdc;
8745 RECT rect; 8745 RECT rect;
8746 int wd; 8746 int wd;
8747 struct glyph *cursor_glyph; 8747 struct glyph *cursor_glyph;
@@ -8770,7 +8770,7 @@ x_draw_hollow_cursor (w, row)
8770 wd = min (CANON_X_UNIT (f), wd); 8770 wd = min (CANON_X_UNIT (f), wd);
8771 8771
8772 rect.right = rect.left + wd; 8772 rect.right = rect.left + wd;
8773 8773 hdc = get_frame_dc (f);
8774 FrameRect (hdc, &rect, hb); 8774 FrameRect (hdc, &rect, hb);
8775 DeleteObject (hb); 8775 DeleteObject (hb);
8776 8776