* clutter/clutter-model.c: (clutter_model_resort):
Don't return when there's no sort function set, leave that to the model sub-class
This commit is contained in:
parent
6af626aabd
commit
015eba286f
@ -1,3 +1,9 @@
|
||||
2008-02-19 Chris Lord <chris@openedhand.com>
|
||||
|
||||
* clutter/clutter-model.c: (clutter_model_resort):
|
||||
Don't return when there's no sort function set, leave that to the
|
||||
model sub-class
|
||||
|
||||
2008-02-18 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
* configure.ac:
|
||||
|
@ -437,9 +437,6 @@ clutter_model_resort (ClutterModel *model)
|
||||
g_return_if_fail (CLUTTER_IS_MODEL (model));
|
||||
priv = model->priv;
|
||||
|
||||
if (!priv->sort_func)
|
||||
return;
|
||||
|
||||
klass = CLUTTER_MODEL_GET_CLASS (model);
|
||||
|
||||
if (klass->resort)
|
||||
|
Loading…
Reference in New Issue
Block a user