summaryrefslogtreecommitdiff
path: root/gtk/gtkfixed.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-05-07 15:40:20 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-05-11 22:21:39 -0400
commit741a9cb320d007cfafa86c7a10b639df353eadc8 (patch)
tree83e8a3a0a9d4d885d5328993798c726662bad967 /gtk/gtkfixed.h
parent0d57abfe6510abaad9a45dbb16cc28af7d98e6cf (diff)
downloadgtk+-741a9cb320d007cfafa86c7a10b639df353eadc8.tar.gz
fixed: Derive from GtkWidget
Diffstat (limited to 'gtk/gtkfixed.h')
-rw-r--r--gtk/gtkfixed.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkfixed.h b/gtk/gtkfixed.h
index 77acdf3e85..e16827dbb6 100644
--- a/gtk/gtkfixed.h
+++ b/gtk/gtkfixed.h
@@ -30,7 +30,7 @@
#error "Only <gtk/gtk.h> can be included directly."
#endif
-#include <gtk/gtkcontainer.h>
+#include <gtk/gtkwidget.h>
G_BEGIN_DECLS
@@ -47,12 +47,12 @@ typedef struct _GtkFixedClass GtkFixedClass;
struct _GtkFixed
{
- GtkContainer parent_instance;
+ GtkWidget parent_instance;
};
struct _GtkFixedClass
{
- GtkContainerClass parent_class;
+ GtkWidgetClass parent_class;
/*< private >*/