config: on_changed -> on_change

This commit is contained in:
Přemysl Eric Janouch 2015-05-02 21:19:12 +02:00
parent f7c08fdace
commit cfc77159d8
1 changed files with 5 additions and 5 deletions

View File

@ -557,7 +557,7 @@ struct config_schema
bool (*validate) (const struct config_item_ *, struct error **e);
/// The value has changed
void (*on_changed) (struct config_item_ *);
void (*on_change) (struct config_item_ *);
};
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@ -737,8 +737,8 @@ config_item_set_from (struct config_item_ *self, struct config_item_ *source,
config_item_move (self, source);
// Notify owner about the change so that they can apply it
if (schema->on_changed)
schema->on_changed (self);
if (schema->on_change)
schema->on_change (self);
return true;
}
@ -1452,8 +1452,8 @@ config_schema_fix_value
item->type = schema->type;
item->schema = schema;
if (schema->on_changed)
schema->on_changed (item);
if (schema->on_change)
schema->on_change (item);
}
static void