~afeder/network-manager-applet/bug-704123

« back to all changes in this revision

Viewing changes to src/applet-dialogs.c

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-07-08 01:07:05 UTC
  • mfrom: (1.2.22 upstream)
  • Revision ID: james.westby@ubuntu.com-20110708010705-d60t3h78jol3kq12
Tags: 0.8.9997+git.20110707t152406.340f695-0ubuntu1
* upstream snapshot 2011-07-07 15:24:06 (GMT)
  + 340f69597ea787cebf690b73de2d4c8c78f7b16c
  - editor: update secret flags when updating visibility
  - applet: don't show irrelevant security options during secrets requests
  - added translations
* debian/control: drop gksu from network-manager-gnome Depends.
* debian/patches/nm-applet-use-indicator.patch:
  - refreshed.
  - rework menu update code to trigger on dbusmenu about-to-show signal
    (LP: #791770, #764451)

Show diffs side-by-side

added added

removed removed

Lines of Context:
847
847
        w = gtk_alignment_new (0.5, 0.5, 0, 1.0);
848
848
        gtk_box_pack_start (vbox, w, TRUE, TRUE, 0);
849
849
 
 
850
#if GTK_CHECK_VERSION(3,1,6)
 
851
        box = GTK_BOX (gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6));
 
852
#else
850
853
        box = GTK_BOX (gtk_hbox_new (FALSE, 6));
 
854
#endif
851
855
        gtk_container_set_border_width (GTK_CONTAINER (box), 6);
852
856
        gtk_container_add (GTK_CONTAINER (w), GTK_WIDGET (box));
853
857