X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fballoon_help.c;h=5001c7d9f8543752208b21e394d0cb5716f9ffd9;hb=d3c5cd1b305a4b61e27abfc5a43d0d9f711eab8b;hp=3410129b0650513ba82ca86dd0b005b66505712b;hpb=33c8db8e2477d62fd8734f65475f2ed516167532;p=chise%2Fxemacs-chise.git.1 diff --git a/src/balloon_help.c b/src/balloon_help.c index 3410129..5001c7d 100644 --- a/src/balloon_help.c +++ b/src/balloon_help.c @@ -44,7 +44,7 @@ Boston, MA 02111-1307, USA. */ #include "balloon_help.h" -#ifndef WINDOWSNT +#ifndef max #define max(x,y) (x>y?x:y) #endif @@ -83,7 +83,7 @@ static Pixmap b_mask; static int b_maskWidth, b_maskHeight; static GC b_maskGC; -static CONST char* b_text; +static const char* b_text; static int b_width, b_height; static XtIntervalId b_timer; @@ -214,7 +214,7 @@ grow_pixmap_mask (int width, int height) ============================================================================*/ static void -text_extent (XFontStruct* fontStruct, CONST char* text, int len, +text_extent (XFontStruct* fontStruct, const char* text, int len, int* width, int* height) { XCharStruct extent; @@ -227,13 +227,13 @@ text_extent (XFontStruct* fontStruct, CONST char* text, int len, } static void -get_text_size (Display* dpy, XFontStruct* fontStruct, CONST char* text, +get_text_size (Display* dpy, XFontStruct* fontStruct, const char* text, int* max_width, int* max_height) { int width; int height; - CONST char* start; - CONST char* end; + const char* start; + const char* end; *max_width = *max_height = 0; @@ -257,10 +257,10 @@ get_text_size (Display* dpy, XFontStruct* fontStruct, CONST char* text, static void draw_text (Display* dpy, Window win, GC gc, XFontStruct* fontStruct, - int x, int y, CONST char* text) + int x, int y, const char* text) { - CONST char* start; - CONST char* end; + const char* start; + const char* end; int font_height; y += fontStruct->ascent; @@ -538,7 +538,7 @@ balloon_help_set_delay (unsigned long milliseconds) } void -balloon_help_show (CONST char* text) +balloon_help_show (const char* text) { assert (b_dpy != NULL);