diff options
author | Timm Bäder <mail@baedert.org> | 2020-02-21 15:24:19 +0100 |
---|---|---|
committer | Timm Bäder <mail@baedert.org> | 2020-02-25 11:08:25 +0100 |
commit | b1d4d24c7b576da415a6e1ae158a72eb09007ffe (patch) | |
tree | 7fe91c26e17480d71a6c2007e669e1db70debff7 /gtk/gtkpathbar.h | |
parent | 1baae1f288a776258b4f210902d5bbe5984cccf1 (diff) | |
download | gtk+-b1d4d24c7b576da415a6e1ae158a72eb09007ffe.tar.gz |
pathbar: Inherit from GtkWidget
Diffstat (limited to 'gtk/gtkpathbar.h')
-rw-r--r-- | gtk/gtkpathbar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkpathbar.h b/gtk/gtkpathbar.h index 6f8c105246..52a2df2deb 100644 --- a/gtk/gtkpathbar.h +++ b/gtk/gtkpathbar.h @@ -36,12 +36,12 @@ typedef struct _GtkPathBarClass GtkPathBarClass; struct _GtkPathBar { - GtkContainer parent_instance; + GtkWidget parent_instance; }; struct _GtkPathBarClass { - GtkContainerClass parent_class; + GtkWidgetClass parent_class; void (* path_clicked) (GtkPathBar *path_bar, GFile *file, |