summaryrefslogtreecommitdiff
path: root/gtk/gtklockbutton.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-05-25 20:19:08 -0400
committerMatthias Clasen <mclasen@redhat.com>2011-05-25 20:19:08 -0400
commit9fd0458f1ccf5d5c7c0317db8844a1ce43a15624 (patch)
treeace42341d58b2cf24e906393a92b1f4c24a04b38 /gtk/gtklockbutton.h
parent5f2ef59d6968f311abe3ebf9f477120240c1acb2 (diff)
downloadgtk+-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.h6
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);