aboutsummaryrefslogtreecommitdiffstats
path: root/src/xfns.c
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2001-01-25 20:25:33 +0000
committerGerd Moellmann <[email protected]>2001-01-25 20:25:33 +0000
commit161d30fdcbf67b23fba7adc24736737592547d1c (patch)
treef22ec934c58fa27894bae2681b09e99827ae860f /src/xfns.c
parentfba448c1825e6d9c84608452a3120359bfe06dbe (diff)
* xfns.c (x_set_tool_bar_lines): Use x_clear_area instead of
XClearArea.
Diffstat (limited to 'src/xfns.c')
-rw-r--r--src/xfns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 8c9ded0588..29d131b0c5 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -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;
}
}