~canonical-dx-team/ubuntu/maverick/gtk+2.0/menuproxy

« back to all changes in this revision

Viewing changes to gdk/x11/gdkevents-x11.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-06-11 12:19:30 UTC
  • mfrom: (1.11.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 175.
  • Revision ID: james.westby@ubuntu.com-20100611121930-n4pklvkoqdsg12vm
Tags: 2.21.2-1
* New upstream development release:
  + debian/rules,
    debian/libgtk2.0-0.symbols:
    - Update for new API symbols.
  + debian/patches/070_mandatory-relibtoolize.patch:
    - Regenerated for the new version.
  + debian/control.in:
    - Update GLib (build-) dependency to >= 2.25.8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
{
143
143
  GSource *source = g_source_new (&event_funcs, sizeof (GdkDisplaySource));
144
144
  GdkDisplaySource *display_source = (GdkDisplaySource *)source;
 
145
  char *name;
145
146
  
 
147
  name = g_strdup_printf ("GDK X11 Event source (%s)",
 
148
                          gdk_display_get_name (display));
 
149
  g_source_set_name (source, name);
 
150
  g_free (name);
146
151
  display_source->display = display;
147
152
  
148
153
  return source;