diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-01-25 21:57:23 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-01-25 21:57:23 +0000 |
commit | 9d75c83f8fa3fec072019d0a13b58b00501959b5 (patch) | |
tree | b3633eb0b393fe5ec8f0f2f97e085039ee09924d /src/gui_xmebw.c | |
parent | 281bdcec60a64ccd0b613ecaf2379e46b21c9912 (diff) | |
download | vim-git-9d75c83f8fa3fec072019d0a13b58b00501959b5.tar.gz |
updated for version 7.0044
Diffstat (limited to 'src/gui_xmebw.c')
-rw-r--r-- | src/gui_xmebw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_xmebw.c b/src/gui_xmebw.c index fbe0ba99b..d63cf5a42 100644 --- a/src/gui_xmebw.c +++ b/src/gui_xmebw.c @@ -346,8 +346,8 @@ set_pixmap(XmEnhancedButtonWidget eb) XGetGeometry(dpy, pix, &root, &x, &y, &width, &height, &border, &depth); - if (eb->enhancedbutton.label_location == XmTOP - || eb->enhancedbutton.label_location == XmBOTTOM) + if (eb->enhancedbutton.label_location == (int)XmTOP + || eb->enhancedbutton.label_location == (int)XmBOTTOM) shift = eb->primitive.shadow_thickness / 2; else shift = eb->primitive.shadow_thickness / 2; |