summaryrefslogtreecommitdiff
path: root/src/scrollbar.c
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2000-09-01 05:46:04 +0000
committerMichael Jennings <mej@kainx.org>2000-09-01 05:46:04 +0000
commitcdbb53b4bf6c7cb641777b5e7561a62df3e23b5f (patch)
treed9e8b2cc7aa6bd8c64424690ca3522b87c9cb8dd /src/scrollbar.c
parentd9812953687ef5c9e622811d63e0b957d3a6bfa6 (diff)
downloadeterm-cdbb53b4bf6c7cb641777b5e7561a62df3e23b5f.tar.gz
Thu Aug 31 23:02:10 PDT 2000 Michael Jennings <mej@eterm.org>
Still more big changes. Working on adding pixmap and GC tracking to libmej using the existing allocation tracking routines. SVN revision: 3291
Diffstat (limited to 'src/scrollbar.c')
-rw-r--r--src/scrollbar.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/scrollbar.c b/src/scrollbar.c
index b50cd76..3336776 100644
--- a/src/scrollbar.c
+++ b/src/scrollbar.c
@@ -885,19 +885,19 @@ scrollbar_drawing_init(void) {
gcvalue.fill_style = FillOpaqueStippled;
gcvalue.foreground = PixColors[fgColor];
gcvalue.background = PixColors[bgColor];
- gc_stipple = X_CREATE_GC(GCForeground | GCBackground | GCFillStyle | GCStipple, &gcvalue);
+ gc_stipple = LIBMEJ_X_CREATE_GC(GCForeground | GCBackground | GCFillStyle | GCStipple, &gcvalue);
gcvalue.foreground = PixColors[borderColor];
- gc_border = X_CREATE_GC(GCForeground, &gcvalue);
+ gc_border = LIBMEJ_X_CREATE_GC(GCForeground, &gcvalue);
}
#endif /* XTERM_SCROLLBAR */
#if defined(MOTIF_SCROLLBAR) || defined(NEXT_SCROLLBAR)
gcvalue.foreground = images[image_sb].norm->bg;
- gc_scrollbar = X_CREATE_GC(GCForeground, &gcvalue);
+ gc_scrollbar = LIBMEJ_X_CREATE_GC(GCForeground, &gcvalue);
gcvalue.foreground = PixColors[topShadowColor];
- gc_top = X_CREATE_GC(GCForeground, &gcvalue);
+ gc_top = LIBMEJ_X_CREATE_GC(GCForeground, &gcvalue);
gcvalue.foreground = PixColors[bottomShadowColor];
- gc_bottom = X_CREATE_GC(GCForeground, &gcvalue);
+ gc_bottom = LIBMEJ_X_CREATE_GC(GCForeground, &gcvalue);
#endif /* MOTIF_SCROLLBAR || NEXT_SCROLLBAR */
}