changeset 35579:65c31f59048a

* xfns.c (x_set_tool_bar_lines): Use x_clear_area instead of XClearArea.
author Gerd Moellmann <gerd@gnu.org>
date Thu, 25 Jan 2001 20:25:33 +0000
parents f499794dc393
children ff5045d1af58
files src/xfns.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/xfns.c	Thu Jan 25 20:21:01 2001 +0000
+++ b/src/xfns.c	Thu Jan 25 20:25:33 2001 +0000
@@ -2053,8 +2053,8 @@
       int y = nlines * CANON_Y_UNIT (f);
 
       BLOCK_INPUT;
-      XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
-		  0, y, width, height, False);
+      x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
+		    0, y, width, height, False);
       UNBLOCK_INPUT;
     }
 }