diff options
author | jstebbins <[email protected]> | 2011-03-23 00:27:41 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-03-23 00:27:41 +0000 |
commit | 4db8774a5866cb84566ab5eab304f65ec4a93ab6 (patch) | |
tree | e38f7aec6a4f036369e463ff9c9a921867351829 /gtk | |
parent | 2ffb7ec124daa744abd4d7524b49158f6eb0ab09 (diff) |
LinGui: Fix incorrect base class in ghbcompositor
"Works" with gtk2, but causes error in gtk3
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3873 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/src/ghbcompositor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/src/ghbcompositor.h b/gtk/src/ghbcompositor.h index 2dd62c5f4..51cdc52c6 100644 --- a/gtk/src/ghbcompositor.h +++ b/gtk/src/ghbcompositor.h @@ -46,13 +46,13 @@ typedef struct _GhbCompositorChild GhbCompositorChild; struct _GhbCompositor { - GtkContainer container; + GtkBin bin; GList *children; }; struct _GhbCompositorClass { - GtkContainerClass parent_class; + GtkBinClass parent_class; }; struct _GhbCompositorChild |