]> git.eshelyaron.com Git - emacs.git/commitdiff
* xfns.c (x_set_tool_bar_lines): Use x_clear_area instead of
authorGerd Moellmann <gerd@gnu.org>
Thu, 25 Jan 2001 20:25:33 +0000 (20:25 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 25 Jan 2001 20:25:33 +0000 (20:25 +0000)
XClearArea.

src/xfns.c

index 8c9ded0588e3594befbd4e54387607690b66c731..29d131b0c5396e89246ff8498445c4da73fb25a3 100644 (file)
@@ -2053,8 +2053,8 @@ x_set_tool_bar_lines (f, value, oldval)
       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;
     }
 }