[empathy] empathy-call-window: fix shadow declarations
- From: Guillaume Desmottes <gdesmott src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [empathy] empathy-call-window: fix shadow declarations
- Date: Tue, 20 Oct 2009 15:11:33 +0000 (UTC)
commit a7f9ee4d7aeb8869d8ec0f86a1e3bdfb190bb037
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date: Tue Oct 20 15:51:34 2009 +0100
empathy-call-window: fix shadow declarations
src/empathy-call-window.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c
index 0644a14..e04dde1 100644
--- a/src/empathy-call-window.c
+++ b/src/empathy-call-window.c
@@ -1447,13 +1447,13 @@ empathy_call_window_update_timer (gpointer user_data)
EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
EmpathyCallWindowPriv *priv = GET_PRIV (self);
gchar *str;
- gdouble time;
+ gdouble time_;
- time = g_timer_elapsed (priv->timer, NULL);
+ time_ = g_timer_elapsed (priv->timer, NULL);
/* Translators: number of minutes:seconds the caller has been connected */
- str = g_strdup_printf (_("Connected â?? %d:%02dm"), (int) time / 60,
- (int) time % 60);
+ str = g_strdup_printf (_("Connected â?? %d:%02dm"), (int) time_ / 60,
+ (int) time_ % 60);
empathy_call_window_status_message (self, str);
g_free (str);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]