aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-03-07 01:21:55 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-03-07 01:21:55 +0800
commitf451e0990a05218bf32821701a8f58e40566aebf (patch)
treec8762d6573683aa38a381548116676ffa4dfbb67
parent42261b4c8ab857c4957821773ef20dde477f20f9 (diff)
downloadgsoc2013-evolution-f451e0990a05218bf32821701a8f58e40566aebf.tar
gsoc2013-evolution-f451e0990a05218bf32821701a8f58e40566aebf.tar.gz
gsoc2013-evolution-f451e0990a05218bf32821701a8f58e40566aebf.tar.bz2
gsoc2013-evolution-f451e0990a05218bf32821701a8f58e40566aebf.tar.lz
gsoc2013-evolution-f451e0990a05218bf32821701a8f58e40566aebf.tar.xz
gsoc2013-evolution-f451e0990a05218bf32821701a8f58e40566aebf.tar.zst
gsoc2013-evolution-f451e0990a05218bf32821701a8f58e40566aebf.zip
(IN): Use G_GNUC_FUNCTION instead of
__FUNCTION__. (OUT): Likewise. svn path=/trunk/; revision=20197
-rw-r--r--shell/ChangeLog6
-rw-r--r--shell/e-shell-importer.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 7daee809e4..188f6168ff 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,11 @@
2003-03-06 Ettore Perazzoli <ettore@ximian.com>
+ * e-shell-importer.c (IN): Use G_GNUC_FUNCTION instead of
+ __FUNCTION__.
+ (OUT): Likewise.
+
+2003-03-06 Ettore Perazzoli <ettore@ximian.com>
+
Patch from Not Zed <NotZed@Ximian.com>:
* main.c (show_development_warning): Separated the current stable
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c
index aca476673c..005360fb69 100644
--- a/shell/e-shell-importer.c
+++ b/shell/e-shell-importer.c
@@ -125,8 +125,8 @@ typedef struct _SelectedImporterData{
#define IMPORTER_DEBUG
*/
#ifdef IMPORTER_DEBUG
-#define IN g_print ("=====> %s (%d)\n", __FUNCTION__, __LINE__)
-#define OUT g_print ("<==== %s (%d)\n", __FUNCTION__, __LINE__)
+#define IN g_print ("=====> %s (%d)\n", G_GNUC_FUNCTION, __LINE__)
+#define OUT g_print ("<==== %s (%d)\n", G_GNUC_FUNCTION, __LINE__)
#else
#define IN
#define OUT