aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTravis Reitter <treitter@gmail.com>2010-07-08 10:22:15 +0800
committerTravis Reitter <treitter@gmail.com>2010-07-21 07:12:36 +0800
commit7473d7a97d02be9aeefa271269184485ddf460a4 (patch)
tree28947f297e03ec2a0098b72e373381e65163f6de /src
parenta854cb126541cda286f4f48d2962c43e3be8a4f5 (diff)
downloadgsoc2013-empathy-7473d7a97d02be9aeefa271269184485ddf460a4.tar
gsoc2013-empathy-7473d7a97d02be9aeefa271269184485ddf460a4.tar.gz
gsoc2013-empathy-7473d7a97d02be9aeefa271269184485ddf460a4.tar.bz2
gsoc2013-empathy-7473d7a97d02be9aeefa271269184485ddf460a4.tar.lz
gsoc2013-empathy-7473d7a97d02be9aeefa271269184485ddf460a4.tar.xz
gsoc2013-empathy-7473d7a97d02be9aeefa271269184485ddf460a4.tar.zst
gsoc2013-empathy-7473d7a97d02be9aeefa271269184485ddf460a4.zip
Use explicit boolean expressions for if-conditionals, according to Telepathy style.
Diffstat (limited to 'src')
-rw-r--r--src/empathy-main-window.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c
index f6fe0c9b4..58ace96d1 100644
--- a/src/empathy-main-window.c
+++ b/src/empathy-main-window.c
@@ -189,7 +189,7 @@ main_window_flash_foreach (GtkTreeModel *model,
contact = empathy_contact_from_folks_individual (individual);
if (contact != data->event->contact) {
- if (contact) {
+ if (contact != NULL) {
g_object_unref (contact);
}
return FALSE;
@@ -221,7 +221,7 @@ main_window_flash_foreach (GtkTreeModel *model,
}
g_object_unref (individual);
- if (contact)
+ if (contact != NULL)
g_object_unref (contact);
return FALSE;
@@ -355,7 +355,7 @@ main_window_row_activated_cb (EmpathyContactListView *view,
g_object_unref (contact);
OUT:
- if (individual)
+ if (individual != NULL)
g_object_unref (individual);
}