aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/e-minicard-control.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-09 13:13:35 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-09 13:13:35 +0800
commit44628427f8c59beebd83979376cb87d64fd7da83 (patch)
tree5184544b100957c49601f22334bbf1e589bf7792 /addressbook/gui/widgets/e-minicard-control.c
parent37f85438b274e6285335f8484031f06522ce1fe2 (diff)
downloadgsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.tar
gsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.tar.gz
gsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.tar.bz2
gsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.tar.lz
gsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.tar.xz
gsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.tar.zst
gsoc2013-evolution-44628427f8c59beebd83979376cb87d64fd7da83.zip
Changed e_popup_menu_run call to match the new arguments.
2000-08-09 Christopher James Lahey <clahey@helixcode.com> * gui/component/addressbook.c, gui/minicard/e-minicard.c: Changed e_popup_menu_run call to match the new arguments. * gui/component/addressbook.oafinfo: Fixed this file to work properly. * gui/minicard/e-minicard-control.c: Use the correct oafinfo ID here. Also cleaned up the code a bit with the help of Michael Meeks. svn path=/trunk/; revision=4627
Diffstat (limited to 'addressbook/gui/widgets/e-minicard-control.c')
-rw-r--r--addressbook/gui/widgets/e-minicard-control.c55
1 files changed, 13 insertions, 42 deletions
diff --git a/addressbook/gui/widgets/e-minicard-control.c b/addressbook/gui/widgets/e-minicard-control.c
index ab8aedff96..5d6334a619 100644
--- a/addressbook/gui/widgets/e-minicard-control.c
+++ b/addressbook/gui/widgets/e-minicard-control.c
@@ -139,7 +139,7 @@ pstream_load (BonoboPersistStream *ps, const Bonobo_Stream stream,
char *vcard;
GtkWidget *minicard = data;
- if (*type && g_strcasecmp (type, "text/vCard") != 0 &&
+ if (type && g_strcasecmp (type, "text/vCard") != 0 &&
g_strcasecmp (type, "text/x-vCard") != 0) {
CORBA_exception_set (ev, CORBA_USER_EXCEPTION,
ex_Bonobo_Persist_WrongDataType, NULL);
@@ -168,53 +168,25 @@ pstream_save (BonoboPersistStream *ps, const Bonobo_Stream stream,
Bonobo_Persist_ContentType type, void *data,
CORBA_Environment *ev)
{
- Bonobo_Stream_iobuf *buffer;
- size_t pos;
char *vcard;
ECard *card;
EMinicardWidget *minicard = data;
int length;
- if (*type && g_strcasecmp (type, "text/vCard") != 0 &&
+ if (type && g_strcasecmp (type, "text/vCard") != 0 &&
g_strcasecmp (type, "text/x-vCard") != 0) {
CORBA_exception_set (ev, CORBA_USER_EXCEPTION,
ex_Bonobo_Persist_WrongDataType, NULL);
return;
}
- buffer = Bonobo_Stream_iobuf__alloc ();
-
- gtk_object_get(GTK_OBJECT(minicard),
- "card", &card,
- NULL);
+ gtk_object_get (GTK_OBJECT (minicard),
+ "card", &card,
+ NULL);
vcard = e_card_get_vcard(card);
- length = strlen(vcard);
- data = CORBA_sequence_CORBA_octet_allocbuf (length);
- memcpy (data, vcard, length);
-
- buffer->_buffer = data;
- buffer->_length = length;
-
- g_free(vcard);
-
- pos = 0;
-
- while (pos < length) {
- CORBA_long bytes_read;
-
- bytes_read = Bonobo_Stream_write (stream, buffer, ev);
-
- if (ev->_major != CORBA_NO_EXCEPTION) {
- CORBA_free (buffer);
- CORBA_free (data);
- return;
- }
-
- pos += bytes_read;
- }
-
- CORBA_free (buffer);
- CORBA_free (data);
+ length = strlen (vcard);
+ bonobo_stream_client_write (stream, vcard, length, ev);
+ g_free (vcard);
} /* pstream_save */
static CORBA_long
@@ -226,12 +198,11 @@ pstream_get_max_size (BonoboPersistStream *ps, void *data,
char *vcard;
gint length;
- gtk_object_get(GTK_OBJECT(minicard),
- "card", &card,
- NULL);
+ gtk_object_get (GTK_OBJECT (minicard),
+ "card", &card, NULL);
vcard = e_card_get_vcard(card);
- length = strlen(vcard);
- g_free(vcard);
+ length = strlen (vcard);
+ g_free (vcard);
return length;
}
@@ -296,7 +267,7 @@ e_minicard_control_factory_init (void)
#if USING_OAF
factory =
bonobo_generic_factory_new (
- "OAFIID:e_minicard_factory:f9542709-fb31-4c6a-bc00-d462ba41e4b9",
+ "OAFIID:control-factory:e_minicard:16bb7c25-c7d2-46dc-a5f0-a0975d0e0595",
e_minicard_control_factory, NULL);
#else
factory =