diff options
author | jstebbins <[email protected]> | 2011-03-22 23:41:03 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-03-22 23:41:03 +0000 |
commit | 2ffb7ec124daa744abd4d7524b49158f6eb0ab09 (patch) | |
tree | ba3f65267c369c47854ba261008f656e31b7fe4f /gtk/src/ghbcompositor.c | |
parent | 1c2d3f19a565733b756fb21bf53dea49a4b4e7ca (diff) |
LinGui: don't use private gtk_marshal_* functions
They are not exported in gtk+-3, so create our own marshalers
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3872 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/ghbcompositor.c')
-rw-r--r-- | gtk/src/ghbcompositor.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gtk/src/ghbcompositor.c b/gtk/src/ghbcompositor.c index c67181ebf..4839fa786 100644 --- a/gtk/src/ghbcompositor.c +++ b/gtk/src/ghbcompositor.c @@ -28,8 +28,6 @@ #include <config.h> #include <stdlib.h> #include "ghbcompat.h" -#include <gtk/gtkprivate.h> -#include <gtk/gtkmarshal.h> #include "ghbcompositor.h" enum { @@ -116,7 +114,7 @@ ghb_compositor_class_init (GhbCompositorClass *class) "Position in Z-List", "Sets the blending order of the child.", 0, 65535, 0, - GTK_PARAM_READWRITE)); + G_PARAM_READWRITE)); gtk_container_class_install_child_property (container_class, CHILD_PROP_OPACITY, @@ -124,7 +122,7 @@ ghb_compositor_class_init (GhbCompositorClass *class) "Opacity", "Sets the opacity of the child.", 0.0, 1.0, 1.0, - GTK_PARAM_READWRITE)); + G_PARAM_READWRITE)); } |