~mterry/ubuntu/natty/gnome-shell/wip

« back to all changes in this revision

Viewing changes to src/st/st-bin.c

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-10-14 11:31:23 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20091014113123-bf8e1l5lqd4r788k
Tags: 2.28.1~git20091020-1
* Initial upload, based on the Ubuntu package (Closes: #550956)
* debian/patches:
- drop two unnecessary patches
* debian/rules:
- cleanup, and add Debian GNOME Team rules include
* debian/control.in:
- add Debian GNOME Team stuff
- fix alignment
- remove Recommends for xserver-xephyr
- fix build-dependencies package names
- build-depend on gnome-pkg-tools for uploaders

Show diffs side-by-side

added added

removed removed

Lines of Context:
352
352
  StBinPrivate *priv = ST_BIN (gobject)->priv;
353
353
 
354
354
  if (priv->child)
355
 
    {
356
 
      clutter_actor_unparent (priv->child);
357
 
      priv->child = NULL;
358
 
    }
 
355
    clutter_actor_destroy (priv->child);
 
356
  g_assert (priv->child == NULL);
359
357
 
360
358
  G_OBJECT_CLASS (st_bin_parent_class)->dispose (gobject);
361
359
}