aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-11-28 00:27:50 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-11-28 00:33:45 +0800
commit865a820252f569238f53a5a401836a1925acd2f9 (patch)
treef5071b35076602ae3a261f1b48aa224144394aeb
parent68cdcde0b0a029379d3a0b9e0e62bfda7e0bcf7f (diff)
downloadgsoc2013-empathy-865a820252f569238f53a5a401836a1925acd2f9.tar
gsoc2013-empathy-865a820252f569238f53a5a401836a1925acd2f9.tar.gz
gsoc2013-empathy-865a820252f569238f53a5a401836a1925acd2f9.tar.bz2
gsoc2013-empathy-865a820252f569238f53a5a401836a1925acd2f9.tar.lz
gsoc2013-empathy-865a820252f569238f53a5a401836a1925acd2f9.tar.xz
gsoc2013-empathy-865a820252f569238f53a5a401836a1925acd2f9.tar.zst
gsoc2013-empathy-865a820252f569238f53a5a401836a1925acd2f9.zip
Capitalize first letter of debug msg
-rw-r--r--src/empathy-call-window.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c
index bc42f3323..6cd437553 100644
--- a/src/empathy-call-window.c
+++ b/src/empathy-call-window.c
@@ -741,7 +741,7 @@ disable_camera (EmpathyCallWindow *self)
if (priv->camera_state == CAMERA_STATE_OFF)
return;
- DEBUG ("disable camera");
+ DEBUG ("Disable camera");
display_video_preview (self, FALSE);
@@ -793,7 +793,7 @@ enable_preview (EmpathyCallWindow *self)
if (priv->camera_state == CAMERA_STATE_PREVIEW)
return;
- DEBUG ("enable preview");
+ DEBUG ("Enable preview");
if (priv->camera_state == CAMERA_STATE_ON)
/* preview is already displayed so we just have to stop sending */
@@ -846,7 +846,7 @@ enable_camera (EmpathyCallWindow *self)
if (priv->camera_state == CAMERA_STATE_ON)
return;
- DEBUG ("enable camera");
+ DEBUG ("Enable camera");
empathy_call_window_set_send_video (self, TRUE);