aboutsummaryrefslogtreecommitdiffstats
path: root/src/xterm.c
diff options
context:
space:
mode:
authorDmitry Antipov2014-07-22 17:55:04 +0400
committerDmitry Antipov2014-07-22 17:55:04 +0400
commit0df1c7293ee5a4715879ec8bf92585fa050085ea (patch)
treea75620bbe67847ea09ed70043ba695286a56484b /src/xterm.c
parent1d3710228bb29e020ab4f179b0b14362bb5691b4 (diff)
downloademacs-0df1c7293ee5a4715879ec8bf92585fa050085ea.tar.gz
emacs-0df1c7293ee5a4715879ec8bf92585fa050085ea.zip
* xterm.h (struct x_output) [USE_LUCID && USE_TOOLKIT_SCROLL_BARS]:
Define scroll_bar_top_shadow_pixel and scroll_bar_bottom_shadow_pixel as such. All related users changed.
Diffstat (limited to 'src/xterm.c')
-rw-r--r--src/xterm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 98737951022..8513427972a 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -9269,13 +9269,13 @@ x_free_frame_resources (struct frame *f)
9269 unload_color (f, f->output_data.x->scroll_bar_background_pixel); 9269 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
9270 if (f->output_data.x->scroll_bar_foreground_pixel != -1) 9270 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
9271 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel); 9271 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
9272#ifdef USE_TOOLKIT_SCROLL_BARS 9272#if defined (USE_LUCID) && defined (USE_TOOLKIT_SCROLL_BARS)
9273 /* Scrollbar shadow colors. */ 9273 /* Scrollbar shadow colors. */
9274 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1) 9274 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
9275 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel); 9275 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
9276 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1) 9276 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
9277 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel); 9277 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
9278#endif /* USE_TOOLKIT_SCROLL_BARS */ 9278#endif /* USE_LUCID && USE_TOOLKIT_SCROLL_BARS */
9279 if (f->output_data.x->white_relief.pixel != -1) 9279 if (f->output_data.x->white_relief.pixel != -1)
9280 unload_color (f, f->output_data.x->white_relief.pixel); 9280 unload_color (f, f->output_data.x->white_relief.pixel);
9281 if (f->output_data.x->black_relief.pixel != -1) 9281 if (f->output_data.x->black_relief.pixel != -1)