diff options
author | Travis Reitter <treitter@gmail.com> | 2010-07-09 02:34:35 +0800 |
---|---|---|
committer | Travis Reitter <treitter@gmail.com> | 2010-07-21 07:12:36 +0800 |
commit | fef2dec3ea6216921b297c7edbb3665e6c222ef5 (patch) | |
tree | b722d3b46c7a5d4c9c06130aaafcd6910e6c01e8 /src | |
parent | 571d3f81c92099c569c061f38c1ac3b923c04637 (diff) | |
download | gsoc2013-empathy-fef2dec3ea6216921b297c7edbb3665e6c222ef5.tar gsoc2013-empathy-fef2dec3ea6216921b297c7edbb3665e6c222ef5.tar.gz gsoc2013-empathy-fef2dec3ea6216921b297c7edbb3665e6c222ef5.tar.bz2 gsoc2013-empathy-fef2dec3ea6216921b297c7edbb3665e6c222ef5.tar.lz gsoc2013-empathy-fef2dec3ea6216921b297c7edbb3665e6c222ef5.tar.xz gsoc2013-empathy-fef2dec3ea6216921b297c7edbb3665e6c222ef5.tar.zst gsoc2013-empathy-fef2dec3ea6216921b297c7edbb3665e6c222ef5.zip |
Add 'dup' to the names of empathy_contact_from_folks_individual() and folks_individual_from_empathy_contact() to make it clear that the return value has been referenced.
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-main-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index 58ace96d1..c5adf11f2 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -187,7 +187,7 @@ main_window_flash_foreach (GtkTreeModel *model, if (individual == NULL) return FALSE; - contact = empathy_contact_from_folks_individual (individual); + contact = empathy_contact_dup_from_folks_individual (individual); if (contact != data->event->contact) { if (contact != NULL) { g_object_unref (contact); @@ -329,7 +329,7 @@ main_window_row_activated_cb (EmpathyContactListView *view, -1); if (individual != NULL) { - contact = empathy_contact_from_folks_individual (individual); + contact = empathy_contact_dup_from_folks_individual (individual); } if (!contact) { |