~fboucault/paf/documentation_fixes

« back to all changes in this revision

Viewing changes to paf/pafmodifier.c

  • Committer: Guillaume Emont
  • Date: 2008-05-22 15:38:43 UTC
  • mfrom: (57.1.17 api-fixing)
  • Revision ID: guillaume@fluendo.com-20080522153843-qx418dc8hes14x1r
Merge with api-fixing.
  Added const and G_GNUC_NULL_TERMINATED where needed.
  Renamed "source" and "progression" to "fraction".

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
 
137
137
PafModifier * paf_modifier_new_full (PafValueSetterFunc value_setter,
138
138
                                     gpointer target_container,
139
 
                                     gpointer target_info)
 
139
                                     gconstpointer target_info)
140
140
{
141
141
    return NULL;
142
142
}
143
143
 
144
144
 
145
 
void paf_modifier_update (GValue *value)
 
145
void paf_modifier_update (PafModifier *modifier, GValue *value)
146
146
{
147
147
}
148
148
 
156
156
 * Default value setter for #PafModifier, which sets a property of a #GObject.
157
157
 */
158
158
void paf_gobject_value_setter (gpointer container,
159
 
                               gpointer attribute_data,
 
159
                               gconstpointer attribute_data,
160
160
                               GValue *new_value)
161
161
{
162
162
}