Annotate deprecated style properties
Use G_PARAM_DEPRECATED with deprecated style properties. This will make it easier to identify and remove such stale properties from css, since it will now trigger warnings.
This commit is contained in:
@ -585,7 +585,7 @@ gtk_range_class_init (GtkRangeClass *class)
|
||||
G_MININT,
|
||||
G_MAXINT,
|
||||
0,
|
||||
GTK_PARAM_READABLE));
|
||||
GTK_PARAM_READABLE|G_PARAM_DEPRECATED));
|
||||
|
||||
/**
|
||||
* GtkRange:arrow-displacement-y:
|
||||
@ -601,7 +601,7 @@ gtk_range_class_init (GtkRangeClass *class)
|
||||
G_MININT,
|
||||
G_MAXINT,
|
||||
0,
|
||||
GTK_PARAM_READABLE));
|
||||
GTK_PARAM_READABLE|G_PARAM_DEPRECATED));
|
||||
|
||||
/**
|
||||
* GtkRange:trough-under-steppers:
|
||||
|
||||
Reference in New Issue
Block a user