diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-03-18 20:25:31 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-03-18 20:25:31 +0000 |
commit | 4317d9b4867621ec572a3a4010587d59ecc51813 (patch) | |
tree | da053bbf9f210d8c406c070b6e8bafe01faeb5b3 /src/gui_motif.c | |
parent | a5319aed9bad7cd9094d2a8ba34e99270ccdbc0f (diff) | |
download | vim-git-4317d9b4867621ec572a3a4010587d59ecc51813.tar.gz |
updated for version 7.0061
Diffstat (limited to 'src/gui_motif.c')
-rw-r--r-- | src/gui_motif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_motif.c b/src/gui_motif.c index a1da3d0af..408b588a6 100644 --- a/src/gui_motif.c +++ b/src/gui_motif.c @@ -1372,7 +1372,7 @@ gui_mch_destroy_menu(menu) parent = XtParent(menu->id); #if defined(FEAT_TOOLBAR) && defined(FEAT_BEVAL) - if ((parent == toolBar) && (menu->tip != NULL)) + if (parent == toolBar && menu->tip != NULL) { /* We try to destroy this before the actual menu, because there are * callbacks, etc. that will be unregistered during the tooltip |