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:
parent
d13506289a
commit
8b610cfc7c
@ -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 */
|
||||||
|
@ -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,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user