diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-05-25 20:19:08 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-05-25 20:19:08 -0400 |
commit | 9fd0458f1ccf5d5c7c0317db8844a1ce43a15624 (patch) | |
tree | ace42341d58b2cf24e906393a92b1f4c24a04b38 /gtk/gtklockbutton.h | |
parent | 5f2ef59d6968f311abe3ebf9f477120240c1acb2 (diff) | |
download | gtk+-9fd0458f1ccf5d5c7c0317db8844a1ce43a15624.tar.gz |
Simplify GtkLockButton
Now it is actually just a button, which makes things simpler
and is closer to what the designers want.
Diffstat (limited to 'gtk/gtklockbutton.h')
-rw-r--r-- | gtk/gtklockbutton.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtklockbutton.h b/gtk/gtklockbutton.h index abc100ed22..10635c9080 100644 --- a/gtk/gtklockbutton.h +++ b/gtk/gtklockbutton.h @@ -21,7 +21,7 @@ #ifndef __GTK_LOCK_BUTTON_H__ #define __GTK_LOCK_BUTTON_H__ -#include <gtk/gtkbin.h> +#include <gtk/gtkbutton.h> #include <gio/gio.h> G_BEGIN_DECLS @@ -39,14 +39,14 @@ typedef struct _GtkLockButtonPrivate GtkLockButtonPrivate; struct _GtkLockButton { - GtkBin parent; + GtkButton parent; GtkLockButtonPrivate *priv; }; struct _GtkLockButtonClass { - GtkBinClass parent_class; + GtkButtonClass parent_class; void (*reserved0) (void); void (*reserved1) (void); |