RNA: correct callback type

Missed when changing callbacks from int to bool type.
This commit is contained in:
2018-07-05 22:25:34 +02:00
parent 4d00e95ee3
commit 0e2915b292
41 changed files with 214 additions and 214 deletions

View File

@@ -510,7 +510,7 @@ static void rna_FCurve_modifiers_remove(FCurve *fcu, ReportList *reports, Pointe
RNA_POINTER_INVALIDATE(fcm_ptr);
}
static void rna_FModifier_active_set(PointerRNA *ptr, int UNUSED(value))
static void rna_FModifier_active_set(PointerRNA *ptr, bool UNUSED(value))
{
FModifier *fcm = (FModifier *)ptr->data;