diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-05-25 11:54:16 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-05-25 12:01:04 -0400 |
commit | 50a72eda2d916a22a3bf5cf8e5736354d629dc61 (patch) | |
tree | 03e3bc7a2fb04da705d5768eec08631e3054b816 /gdk/gdkcursor.h | |
parent | 57754edef6360e48d4a8ef99bbf11c760c15033b (diff) | |
download | gtk+-50a72eda2d916a22a3bf5cf8e5736354d629dc61.tar.gz |
Seal gdk
Add G_SEAL annotation for struct members, and add accessors for
the (useful) fields. Patch based on work by Garrett Regier,
see bug #592580.
Diffstat (limited to 'gdk/gdkcursor.h')
-rw-r--r-- | gdk/gdkcursor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/gdkcursor.h b/gdk/gdkcursor.h index 25195d3156..bf17547ce7 100644 --- a/gdk/gdkcursor.h +++ b/gdk/gdkcursor.h @@ -126,9 +126,9 @@ typedef enum struct _GdkCursor { - GdkCursorType type; + GdkCursorType GSEAL (type); /*< private >*/ - guint ref_count; + guint GSEAL (ref_count); }; /* Cursors |