aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2008-01-29 23:24:04 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-01-29 23:24:04 +0800
commite8b3264480caffa92afc634f344505f2dac6db63 (patch)
tree223e0561b9b8b42dc12aa1189be8552600535d50 /shell
parent28618d82681cc3b67ef8a0686ce72bc7857d525c (diff)
downloadgsoc2013-evolution-e8b3264480caffa92afc634f344505f2dac6db63.tar
gsoc2013-evolution-e8b3264480caffa92afc634f344505f2dac6db63.tar.gz
gsoc2013-evolution-e8b3264480caffa92afc634f344505f2dac6db63.tar.bz2
gsoc2013-evolution-e8b3264480caffa92afc634f344505f2dac6db63.tar.lz
gsoc2013-evolution-e8b3264480caffa92afc634f344505f2dac6db63.tar.xz
gsoc2013-evolution-e8b3264480caffa92afc634f344505f2dac6db63.tar.zst
gsoc2013-evolution-e8b3264480caffa92afc634f344505f2dac6db63.zip
Replace G_GNUC_FUNCTION (deprecated) with G_STRFUNC.
2008-01-29 Matthew Barnes <mbarnes@redhat.com> * addressbook/gui/widgets/e-minicard.c: * addressbook/gui/widgets/gal-view-minicard.c: * mail/mail-send-recv.c: * shell/e-component-registry.c: * widgets/menus/gal-view-collection.c: * widgets/menus/gal-view-instance.c: * widgets/menus/gal-view-menus.c: Replace G_GNUC_FUNCTION (deprecated) with G_STRFUNC. svn path=/trunk/; revision=34931
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-component-registry.c2
-rw-r--r--shell/e-shell-importer.c4
3 files changed, 8 insertions, 3 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 4b10059506..52dce6694e 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,8 @@
+2008-01-29 Matthew Barnes <mbarnes@redhat.com>
+
+ * e-component-registry.c:
+ Replace G_GNUC_FUNCTION (deprecated) with G_STRFUNC.
+
2008-01-22 Jan Tichavsky <Jan.Tichavsky@gmail.com>
** Fix for bug #511232
diff --git a/shell/e-component-registry.c b/shell/e-component-registry.c
index 9d953b4997..eb11adb081 100644
--- a/shell/e-component-registry.c
+++ b/shell/e-component-registry.c
@@ -343,7 +343,7 @@ e_component_registry_activate (EComponentRegistry *registry,
info = e_component_registry_peek_info (registry, ECR_FIELD_ID, id);
if (info == NULL) {
- g_warning (G_GNUC_FUNCTION " - Unknown id \"%s\"", id);
+ g_warning (G_STRFUNC " - Unknown id \"%s\"", id);
return CORBA_OBJECT_NIL;
}
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c
index 23223614ec..48c480227b 100644
--- a/shell/e-shell-importer.c
+++ b/shell/e-shell-importer.c
@@ -120,8 +120,8 @@ typedef struct _ImportData {
/*#define IMPORTER_DEBUG*/
#ifdef IMPORTER_DEBUG
-#define IN g_print ("=====> %s (%d)\n", G_GNUC_FUNCTION, __LINE__)
-#define OUT g_print ("<==== %s (%d)\n", G_GNUC_FUNCTION, __LINE__)
+#define IN g_print ("=====> %s (%d)\n", G_STRFUNC, __LINE__)
+#define OUT g_print ("<==== %s (%d)\n", G_STRFUNC, __LINE__)
#else
#define IN
#define OUT