0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

updated for version 7.0-152

This commit is contained in:
Bram Moolenaar 2006-10-24 20:29:10 +00:00
parent d13506289a
commit 8b610cfc7c
2 changed files with 16 additions and 1 deletions

View File

@ -138,6 +138,19 @@ static XtResource resources[] =
} }
}; };
/* This is needed to work around a bug in Lesstif 2, leaving the extension
* NULL somehow results in getting it set to an invalid pointer. */
XmPrimitiveClassExtRec xmEnhancedButtonPrimClassExtRec =
{
/* next_extension */ NULL,
/* record_type */ NULLQUARK,
/* version */ XmPrimitiveClassExtVersion,
/* record_size */ sizeof(XmPrimitiveClassExtRec),
/* widget_baseline */ XmInheritBaselineProc,
/* widget_display_rect */ XmInheritDisplayRectProc,
/* widget_margins */ NULL
};
XmEnhancedButtonClassRec xmEnhancedButtonClassRec = XmEnhancedButtonClassRec xmEnhancedButtonClassRec =
{ {
{ {
@ -184,7 +197,7 @@ XmEnhancedButtonClassRec xmEnhancedButtonClassRec =
/* arm and activate */ XmInheritArmAndActivate, /* arm and activate */ XmInheritArmAndActivate,
/* synthetic resources */ NULL, /* synthetic resources */ NULL,
/* number of syn res */ 0, /* number of syn res */ 0,
/* extension */ NULL, /* extension */ (XtPointer)&xmEnhancedButtonPrimClassExtRec,
}, },
/* label_class fields */ /* label_class fields */

View File

@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
152,
/**/ /**/
151, 151,
/**/ /**/