summaryrefslogtreecommitdiffstats
path: root/src/uca-camera.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/uca-camera.c')
-rw-r--r--src/uca-camera.c6
1 files changed, 4 insertions, 2 deletions
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);