From d856ae8dc3ef07e6aa568cdbc2f5a2a8296778f3 Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Thu, 8 Mar 2012 11:24:12 +0100 Subject: Quick fix for openSUSE 11.3 with GLib 2.24 --- src/uca-camera.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/uca-camera.c') diff --git a/src/uca-camera.c b/src/uca-camera.c index 2d2963b..5b30798 100644 --- a/src/uca-camera.c +++ b/src/uca-camera.c @@ -373,7 +373,8 @@ void uca_camera_start_recording(UcaCamera *camera, GError **error) if (tmp_error == NULL) { camera->priv->is_recording = TRUE; - g_object_notify_by_pspec(G_OBJECT(camera), camera_properties[PROP_IS_RECORDING]); + /* TODO: we should depend on GLib 2.26 and use g_object_notify_by_pspec */ + g_object_notify(G_OBJECT(camera), "is-recording"); } else g_propagate_error(error, tmp_error); @@ -406,7 +407,8 @@ void uca_camera_stop_recording(UcaCamera *camera, GError **error) if (tmp_error == NULL) { camera->priv->is_recording = FALSE; - g_object_notify_by_pspec(G_OBJECT(camera), camera_properties[PROP_IS_RECORDING]); + /* TODO: we should depend on GLib 2.26 and use g_object_notify_by_pspec */ + g_object_notify(G_OBJECT(camera), "is-recording"); } else g_propagate_error(error, tmp_error); -- cgit v1.2.3