~ubuntu-branches/ubuntu/lucid/gtk+2.0/lucid-proposed

« back to all changes in this revision

Viewing changes to tests/testmenubars.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-03-11 18:28:01 UTC
  • mfrom: (1.11.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100311182801-wqr2drmus369zy6r
Tags: 2.19.7-0ubuntu1
* New upstream version
  - Bug fixes:
  611707 Move documentation from templates to inline comments
  69872 GTK_WIDGET_SET_FLAGS should be deprecated
  612066 empathy hangs when clicked on information about contact...
         (lp: #532947)
  557420 Some compose sequences don't work anymore...
  569042 gailbooleancell does not seem to attend to changes...
  600992 File chooser reference counting issues
  610905 gtk_drag_source_set need instrospection hint
  611051 Search Entry Clear Icon not accessible
  611217 Incorrect translator comment
  611317 Document targets in drag and drop
  611319 gtk_window_set_transient_for undocumented NULL value for parent
  611658 Update documentation for gtkvscrollbar
  611662 Update documentation for gtkvseparator
  611686 focus_in/focus_out in gailtreeview.c should return FALSE...
  611831 Move documentation to inline comments: GtkVBox
  612119 Do not scroll when middle pasting
  - Translation updates
* debian/patches/071_no_offscreen_widgets_grabbing.patch,
  debian/patches/091_bugzilla_tooltip_refresh.patch:
  - new version update
  - increased the alpha value for tooltips to 85%
* debian/rules:
  - updated the shlibs

Show diffs side-by-side

added added

removed removed

Lines of Context:
160
160
      g_signal_connect_swapped (button, "clicked",
161
161
                                G_CALLBACK(gtk_widget_destroy), window);
162
162
      gtk_box_pack_start (GTK_BOX (box2), button, TRUE, TRUE, 0);
163
 
      GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT);
 
163
      gtk_widget_set_can_default (button, TRUE);
164
164
      gtk_widget_grab_default (button);
165
165
      gtk_widget_show (button);
166
166
    }
167
167
 
168
 
  if (!GTK_WIDGET_VISIBLE (window))
 
168
  if (!gtk_widget_get_visible (window))
169
169
    {
170
170
      gtk_widget_show (window);
171
171
    }