~leprechaun-team/+junk/unity-use-patches

« back to all changes in this revision

Viewing changes to unity/unity-layered-bin.c

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-09-03 17:00:45 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20100903170045-4wxx5upl87lkqnax
Tags: 0.2.34-0ubuntu1
* New upstream release:
  - Use gettext plural form (LP: #625199)
  - Fix newly pinned app is removed from the launcher on closing that app but
    works fine afterward (LP: #614329)
  - Fix Memory leak in places (LP: #628588)
* remove debian/source/:
  - revert to previous format, seems to confuse daily build and we don't have
    anymore bin patch
* remove upstreamed debian/trash.png, debian/applications.png and
  debian/files.png
* debian/rules:
  - remove copying debian/*png
* debian/libunity0.symbols:
  - refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
430
430
static void unity_layered_bin_finalize (GObject* obj) {
431
431
        UnityLayeredBin * self;
432
432
        self = UNITY_LAYERED_BIN (obj);
 
433
        {
 
434
                GList* _tmp0_;
 
435
                {
 
436
                        GList* child_collection;
 
437
                        GList* child_it;
 
438
                        child_collection = self->priv->_children;
 
439
                        for (child_it = child_collection; child_it != NULL; child_it = child_it->next) {
 
440
                                ClutterActor* child;
 
441
                                child = _g_object_ref0 ((ClutterActor*) child_it->data);
 
442
                                {
 
443
                                        clutter_actor_unparent (child);
 
444
                                        _g_object_unref0 (child);
 
445
                                }
 
446
                        }
 
447
                }
 
448
                self->priv->_children = (_tmp0_ = NULL, __g_list_free_g_object_unref0 (self->priv->_children), _tmp0_);
 
449
        }
433
450
        __g_list_free_g_object_unref0 (self->priv->_children);
434
451
        G_OBJECT_CLASS (unity_layered_bin_parent_class)->finalize (obj);
435
452
}