diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-05 20:41:53 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-05 20:41:53 +0000 |
commit | 910f66f90c928da8b607ccfdc12fc33d9cb8d4a9 (patch) | |
tree | 152a03d1d7ea3e8d433addba4f463d8a7a68a5fd /src/gui_xmebw.c | |
parent | e2f98b95c8071f772695602cd4f714dc588eb8e7 (diff) | |
download | vim-git-910f66f90c928da8b607ccfdc12fc33d9cb8d4a9.tar.gz |
updated for version 7.0c10v7.0c10
Diffstat (limited to 'src/gui_xmebw.c')
-rw-r--r-- | src/gui_xmebw.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui_xmebw.c b/src/gui_xmebw.c index ff7d2e68d..70e7df783 100644 --- a/src/gui_xmebw.c +++ b/src/gui_xmebw.c @@ -28,7 +28,7 @@ #include <Xm/XmP.h> #include <Xm/DrawP.h> #if defined(HAVE_XM_TRAITP_H) && defined(HAVE_XM_MANAGER_H) \ - && defined(HAVE_XM_UNHIGHLIGHT_H) && defined(HAVE_XM_XPMP_H) + && defined(HAVE_XM_UNHIGHLIGHTT_H) && defined(HAVE_XM_XPMP_H) # include <Xm/TraitP.h> # include <Xm/Manager.h> # include <Xm/UnhighlightT.h> @@ -274,7 +274,9 @@ static char * blank_xpm[] = static void set_pixmap(XmEnhancedButtonWidget eb) { - XpmAttributes attr; + /* Configure defines XPMATTRIBUTES_TYPE as XpmAttributes or as + * XpmAttributes_21, depending on what is in Xm/XpmP.h. */ + XPMATTRIBUTES_TYPE attr; Pixmap sen_pix; Window root; static XpmColorSymbol color[8] = { |