diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-03-30 03:04:25 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-03-30 03:04:25 +0800 |
commit | 860676317c11fe96f4e9216aa16e0fd9b18a9dd4 (patch) | |
tree | a836b65b5146804b11e2cb2a08d7a16874e225e1 | |
parent | 72f0d0c0001ed7de14640579b9473fed811b866c (diff) | |
download | gsoc2013-evolution-860676317c11fe96f4e9216aa16e0fd9b18a9dd4.tar gsoc2013-evolution-860676317c11fe96f4e9216aa16e0fd9b18a9dd4.tar.gz gsoc2013-evolution-860676317c11fe96f4e9216aa16e0fd9b18a9dd4.tar.bz2 gsoc2013-evolution-860676317c11fe96f4e9216aa16e0fd9b18a9dd4.tar.lz gsoc2013-evolution-860676317c11fe96f4e9216aa16e0fd9b18a9dd4.tar.xz gsoc2013-evolution-860676317c11fe96f4e9216aa16e0fd9b18a9dd4.tar.zst gsoc2013-evolution-860676317c11fe96f4e9216aa16e0fd9b18a9dd4.zip |
Evolution requires GLib 2.10 now; remove dead backward-compatibility code
2007-03-29 Matthew Barnes <mbarnes@redhat.com>
* mail/em-utils.c:
* mail/mail-config.c:
* plugins/save-attachments/save-attachments.c:
Evolution requires GLib 2.10 now; remove dead backward-compatibility
code for GLib < 2.8 (#418971).
svn path=/trunk/; revision=33341
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-utils.c | 4 | ||||
-rw-r--r-- | mail/mail-config.c | 4 | ||||
-rw-r--r-- | plugins/save-attachments/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/save-attachments/save-attachments.c | 4 |
5 files changed, 13 insertions, 12 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 7f06adaf0b..a8b5ed3498 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,12 @@ 2007-03-29 Matthew Barnes <mbarnes@redhat.com> + * em-utils.c: + * mail-config.c: + Evolution requires GLib 2.10 now; remove dead backward-compatibility + code for GLib < 2.8 (#418971). + +2007-03-29 Matthew Barnes <mbarnes@redhat.com> + * em-account-editor.c: * em-folder-view.c: * em-format-html-display.c: diff --git a/mail/em-utils.c b/mail/em-utils.c index 6c34fb624d..4b0ff0bd8a 100644 --- a/mail/em-utils.c +++ b/mail/em-utils.c @@ -42,10 +42,6 @@ #undef interface #endif -#if !GLIB_CHECK_VERSION (2, 8, 0) -#define g_access access -#endif - #include <camel/camel-stream-fs.h> #include <camel/camel-url-scanner.h> #include <camel/camel-file-utils.h> diff --git a/mail/mail-config.c b/mail/mail-config.c index d8ca32e0bd..60625d649f 100644 --- a/mail/mail-config.c +++ b/mail/mail-config.c @@ -76,10 +76,6 @@ #include "mail-mt.h" #include "mail-tools.h" -#if !GLIB_CHECK_VERSION (2, 8, 0) -#define g_creat creat -#endif - /* Note, the first element of each MailConfigLabel must NOT be translated */ MailConfigLabel label_defaults[5] = { { "important", N_("I_mportant"), "#ff0000" }, /* red */ diff --git a/plugins/save-attachments/ChangeLog b/plugins/save-attachments/ChangeLog index fd685afd5c..fc8e1a9112 100644 --- a/plugins/save-attachments/ChangeLog +++ b/plugins/save-attachments/ChangeLog @@ -1,3 +1,9 @@ +2007-03-29 Matthew Barnes <mbarnes@redhat.com> + + * save-attachments.c: + Evolution requires GLib 2.10 now; remove dead backward-compatibility + code for GLib < 2.8 (#418971). + 2007-01-27 Nickolay V. Shmyrev <nshmyrev@yandex.ru> * save-attachments.c: (save_got_message): diff --git a/plugins/save-attachments/save-attachments.c b/plugins/save-attachments/save-attachments.c index 080b520891..99b84609bb 100644 --- a/plugins/save-attachments/save-attachments.c +++ b/plugins/save-attachments/save-attachments.c @@ -32,10 +32,6 @@ #include <glib/gi18n.h> #include <glib/gstdio.h> -#if !GLIB_CHECK_VERSION (2, 8, 0) -#define g_access access -#endif - #include <gtk/gtkcheckbutton.h> #include <gtk/gtkdialog.h> #include <gtk/gtkmessagedialog.h> |