~ubuntu-branches/ubuntu/quantal/gnome-panel/quantal

« back to all changes in this revision

Viewing changes to applets/clock/clock-location-tile.c

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2012-02-08 00:17:11 UTC
  • mfrom: (1.13.15)
  • Revision ID: package-import@ubuntu.com-20120208001711-npwmthl0c6iy3s9a
Tags: 1:3.3.5-0ubuntu1
* New upstream release.
* debian/control.in:
  - Bump minimum glib to 2.31.14
* debian/patches/13_disable_missing_help.patch:
  Updated patch from bugzilla
* debian/patches/14_revert-timedate-change.patch:
  - Revert switch to systemd timedate protocol until ubuntu-system-
    services supports it

Show diffs side-by-side

added added

removed removed

Lines of Context:
275
275
        alignment = gtk_alignment_new (0, 0, 1, 0);
276
276
        gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 3, 3, 3, 0);
277
277
 
278
 
        tile = gtk_hbox_new (FALSE, 6);
279
 
        head_section = gtk_vbox_new (FALSE, 0);
 
278
        tile = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
 
279
        head_section = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
280
280
 
281
281
        priv->city_label = gtk_label_new (NULL);
282
282
        gtk_misc_set_alignment (GTK_MISC (priv->city_label), 0, 0);
293
293
        align = gtk_alignment_new (0, 0, 0, 0);
294
294
        gtk_container_add (GTK_CONTAINER (align), priv->weather_icon);
295
295
 
296
 
        box = gtk_hbox_new (FALSE, 0);
 
296
        box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
297
297
        gtk_box_pack_start (GTK_BOX (head_section), box, FALSE, FALSE, 0);
298
298
        gtk_box_pack_start (GTK_BOX (box), align, FALSE, FALSE, 0);
299
299
        gtk_box_pack_start (GTK_BOX (box), priv->time_label, FALSE, FALSE, 0);