aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/pas
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-04-13 16:45:37 +0800
committerChris Lahey <clahey@src.gnome.org>2000-04-13 16:45:37 +0800
commitdb968c5b9ef629aebea74b290d71b99ee8a1c58b (patch)
treee9cde53da89f7beec7cacfd42460b93b9fa03048 /addressbook/backend/pas
parentbc162e949ed126225cc371ddded34451a93a6bfd (diff)
downloadgsoc2013-evolution-db968c5b9ef629aebea74b290d71b99ee8a1c58b.tar
gsoc2013-evolution-db968c5b9ef629aebea74b290d71b99ee8a1c58b.tar.gz
gsoc2013-evolution-db968c5b9ef629aebea74b290d71b99ee8a1c58b.tar.bz2
gsoc2013-evolution-db968c5b9ef629aebea74b290d71b99ee8a1c58b.tar.lz
gsoc2013-evolution-db968c5b9ef629aebea74b290d71b99ee8a1c58b.tar.xz
gsoc2013-evolution-db968c5b9ef629aebea74b290d71b99ee8a1c58b.tar.zst
gsoc2013-evolution-db968c5b9ef629aebea74b290d71b99ee8a1c58b.zip
Give correct warnings.
2000-04-13 Christopher James Lahey <clahey@helixcode.com> * addressbook/backend/pas/pas-book-view.c: Give correct warnings. * addressbook/backend/ebook/e-card.c (e_card_set_arg): g_strdup url and title. svn path=/trunk/; revision=2421
Diffstat (limited to 'addressbook/backend/pas')
-rw-r--r--addressbook/backend/pas/pas-book-view.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/addressbook/backend/pas/pas-book-view.c b/addressbook/backend/pas/pas-book-view.c
index e59028f88a..9754fb5692 100644
--- a/addressbook/backend/pas/pas-book-view.c
+++ b/addressbook/backend/pas/pas-book-view.c
@@ -42,7 +42,7 @@ pas_book_view_notify_change (PASBookView *book_view,
book_view->priv->listener, &card_sequence, &ev);
if (ev._major != CORBA_NO_EXCEPTION) {
- g_warning ("pas_book_view_notify_change: Exception signaling BookListener!\n");
+ g_warning ("pas_book_view_notify_change: Exception signaling BookViewListener!\n");
}
CORBA_exception_free (&ev);
@@ -74,7 +74,7 @@ pas_book_view_notify_remove (PASBookView *book_view,
book_view->priv->listener, (Evolution_CardId) id, &ev);
if (ev._major != CORBA_NO_EXCEPTION) {
- g_warning ("pas_book_view_notify_remove: Exception signaling BookListener!\n");
+ g_warning ("pas_book_view_notify_remove: Exception signaling BookViewListener!\n");
}
CORBA_exception_free (&ev);
@@ -107,7 +107,7 @@ pas_book_view_notify_add (PASBookView *book_view,
book_view->priv->listener, &card_sequence, &ev);
if (ev._major != CORBA_NO_EXCEPTION) {
- g_warning ("pas_book_view_notify_add: Exception signaling BookListener!\n");
+ g_warning ("pas_book_view_notify_add: Exception signaling BookViewListener!\n");
}
CORBA_exception_free (&ev);