diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-08-10 18:40:17 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-08-10 18:40:17 +0800 |
commit | fd1ef33f25f7692b717064c7a2fc8f34ac040973 (patch) | |
tree | 0756465a4672c8c8920d310c0b54bafd6fc51680 /sysutils | |
parent | 3f0935d0188e114b027c2e370acd2d00312d788f (diff) | |
download | marcuscom-ports-fd1ef33f25f7692b717064c7a2fc8f34ac040973.tar.gz marcuscom-ports-fd1ef33f25f7692b717064c7a2fc8f34ac040973.tar.zst marcuscom-ports-fd1ef33f25f7692b717064c7a2fc8f34ac040973.zip |
- Remove forgotten patch
Reported by: Thomas <freebsdlists@bsdunix.ch>
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7020 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me.c b/sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me.c deleted file mode 100644 index 31267fdcb..000000000 --- a/sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me.c +++ /dev/null @@ -1,31 +0,0 @@ ---- capplets/about-me/gnome-about-me.c.orig Tue Jul 25 23:14:52 2006 -+++ capplets/about-me/gnome-about-me.c Tue Jul 25 23:19:10 2006 -@@ -419,7 +419,7 @@ about_me_load_photo (GnomeAboutMe *me, E - - if (photo) { - me->have_image = TRUE; -- e_image_chooser_set_image_data (E_IMAGE_CHOOSER (widget), photo->data, photo->length); -+ e_image_chooser_set_image_data (E_IMAGE_CHOOSER (widget), photo->data.inlined.data, photo->data.inlined.length); - e_contact_photo_free (photo); - } else { - me->have_image = FALSE; -@@ -490,15 +490,16 @@ about_me_update_photo (GnomeAboutMe *me) - } - - photo = g_new0 (EContactPhoto, 1); -- photo->data = data; -- photo->length = length; -+ photo->data.inlined.data = data; -+ photo->data.inlined.length = length; -+ photo->data.inlined.mime_type = "image/png"; - e_contact_set (me->contact, E_CONTACT_PHOTO, photo); - - /* Save the image for GDM */ - /* FIXME: I would have to read the default used by the gdmgreeter program */ - file = g_strdup_printf ("%s/.face", g_get_home_dir ()); - fp = fopen (file, "wb"); -- fwrite (photo->data, 1, photo->length, fp); -+ fwrite (photo->data.inlined.data, 1, photo->data.inlined.length, fp); - fclose (fp); - - g_free (file); |