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

« back to all changes in this revision

Viewing changes to gdk/gdkscreen.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-06-02 15:59:27 UTC
  • mfrom: (72.1.15 experimental)
  • Revision ID: james.westby@ubuntu.com-20100602155927-uwh99v2582rw3r8z
Tags: 2.21.1-1ubuntu1
* debian/patches/070_mandatory-relibtoolize.patch:
  - refreshed
* debian/patches/072_indicator_menu_update.patch:
  - change by Cody Russell to send an update event on menu changes,
    should make the bluetooth indicator refresh correctly (lp: #558841)
* debian/patches/091_bugzilla_tooltip_refresh.patch:
  - refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
{
48
48
  GObject parent_instance;
49
49
 
50
 
  guint closed : 1;
51
 
 
52
 
  GdkGC *normal_gcs[32];
53
 
  GdkGC *exposure_gcs[32];
54
 
  GdkGC *subwindow_gcs[32];
55
 
 
56
 
  cairo_font_options_t *font_options;
57
 
  double resolution;            /* pixels/points scale factor for fonts */
 
50
  guint GSEAL (closed) : 1;
 
51
 
 
52
  GdkGC *GSEAL (normal_gcs[32]);
 
53
  GdkGC *GSEAL (exposure_gcs[32]);
 
54
  GdkGC *GSEAL (subwindow_gcs[32]);
 
55
 
 
56
  cairo_font_options_t *GSEAL (font_options);
 
57
  double GSEAL (resolution);    /* pixels/points scale factor for fonts */
58
58
};
59
59
 
60
60
struct _GdkScreenClass