Fix compile warnings.
authorRoss Burton <ross@openedhand.com>
Mon, 13 Aug 2007 15:55:30 +0000 (15:55 +0000)
committerRoss Burton <rburton@src.gnome.org>
Mon, 13 Aug 2007 15:55:30 +0000 (15:55 +0000)
2007-08-13  Ross Burton  <ross@openedhand.com>

* e-name-selector-entry.c:
Fix compile warnings.

svn path=/trunk/; revision=7945

libedataserverui/ChangeLog
libedataserverui/e-name-selector-entry.c

index 347e020..a761aa4 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-13  Ross Burton  <ross@openedhand.com>
+
+       * e-name-selector-entry.c:
+       Fix compile warnings.
+
 2007-08-10  Milan Crha  <mcrha@redhat.com>
 
        ** Fix for bug #327977
index d5f6e40..fe623f5 100644 (file)
@@ -2061,7 +2061,7 @@ popup_activate_cut (ENameSelectorEntry *name_selector_entry, GtkWidget *menu_ite
        g_signal_handlers_block_by_func (name_selector_entry, user_delete_text, name_selector_entry);
 
        clipboard = gtk_clipboard_get (GDK_SELECTION_PRIMARY);
-       pemail = g_strconcat (contact_email, ",");
+       pemail = g_strconcat (contact_email, ",", NULL);
        gtk_clipboard_set_text (clipboard, pemail, strlen (pemail));
 
        clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
@@ -2090,7 +2090,7 @@ popup_activate_copy (ENameSelectorEntry *name_selector_entry, GtkWidget *menu_it
        g_signal_handlers_block_by_func (name_selector_entry, user_delete_text, name_selector_entry);
 
        clipboard = gtk_clipboard_get (GDK_SELECTION_PRIMARY);
-       pemail = g_strconcat (contact_email, ",");
+       pemail = g_strconcat (contact_email, ",", NULL);
        gtk_clipboard_set_text (clipboard, pemail, strlen (pemail));
 
        clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);