libgnomeui r5508 - in trunk: . libgnomeui
- From: chpe svn gnome org
- To: svn-commits-list gnome org
- Subject: libgnomeui r5508 - in trunk: . libgnomeui
- Date: Mon, 28 Jan 2008 12:26:04 +0000 (GMT)
Author: chpe
Date: Mon Jan 28 12:26:03 2008
New Revision: 5508
URL: http://svn.gnome.org/viewvc/libgnomeui?rev=5508&view=rev
Log:
2008-01-28 Christian Persch <chpe gnome org>
* libgnomeui/gnome-authentication-manager.c: Use G_STRFUNC instead of
the deprecated G_GNUC_FUNCTION.
Modified:
trunk/ChangeLog
trunk/libgnomeui/gnome-authentication-manager.c
Modified: trunk/libgnomeui/gnome-authentication-manager.c
==============================================================================
--- trunk/libgnomeui/gnome-authentication-manager.c (original)
+++ trunk/libgnomeui/gnome-authentication-manager.c Mon Jan 28 12:26:03 2008
@@ -141,7 +141,7 @@
gint button_number,
CallbackInfo *info)
{
- DEBUG_MSG (("+%s button: %d\n", G_GNUC_FUNCTION, button_number));
+ DEBUG_MSG (("+%s button: %d\n", G_STRFUNC, button_number));
if (button_number == GTK_RESPONSE_OK) {
info->out_args->username
@@ -158,7 +158,7 @@
static void
authentication_dialog_destroyed (GtkDialog *dialog, CallbackInfo *info)
{
- DEBUG_MSG (("+%s\n", G_GNUC_FUNCTION));
+ DEBUG_MSG (("+%s\n", G_STRFUNC));
gnome_authentication_manager_dialog_visible--;
mark_callback_completed (info);
@@ -227,7 +227,7 @@
is_proxy_authentication = (user_data == GINT_TO_POINTER (1));
- DEBUG_MSG (("+%s uri:'%s' is_proxy_auth: %u\n", G_GNUC_FUNCTION, in_real->uri, (unsigned) is_proxy_authentication));
+ DEBUG_MSG (("+%s uri:'%s' is_proxy_auth: %u\n", G_STRFUNC, in_real->uri, (unsigned) is_proxy_authentication));
info = g_new (CallbackInfo, 1);
@@ -239,7 +239,7 @@
present_authentication_dialog_nonblocking (info);
- DEBUG_MSG (("-%s\n", G_GNUC_FUNCTION));
+ DEBUG_MSG (("-%s\n", G_STRFUNC));
GDK_THREADS_LEAVE ();
}
@@ -266,11 +266,11 @@
is_proxy_authentication = (user_data == GINT_TO_POINTER (1));
- DEBUG_MSG (("+%s uri:'%s' is_proxy_auth: %u\n", G_GNUC_FUNCTION, in_real->uri, (unsigned) is_proxy_authentication));
+ DEBUG_MSG (("+%s uri:'%s' is_proxy_auth: %u\n", G_STRFUNC, in_real->uri, (unsigned) is_proxy_authentication));
present_authentication_dialog_blocking (is_proxy_authentication, in_real, out_real);
- DEBUG_MSG (("-%s\n", G_GNUC_FUNCTION));
+ DEBUG_MSG (("-%s\n", G_STRFUNC));
GDK_THREADS_LEAVE ();
}
@@ -392,7 +392,7 @@
gint button_number,
FullCallbackInfo *info)
{
- DEBUG_MSG (("+%s button: %d\n", G_GNUC_FUNCTION, button_number));
+ DEBUG_MSG (("+%s button: %d\n", G_STRFUNC, button_number));
full_auth_get_result_from_dialog (GNOME_PASSWORD_DIALOG (dialog),
info->out_args,
@@ -404,7 +404,7 @@
static void
full_authentication_dialog_destroyed (GtkDialog *dialog, FullCallbackInfo *info)
{
- DEBUG_MSG (("+%s\n", G_GNUC_FUNCTION));
+ DEBUG_MSG (("+%s\n", G_STRFUNC));
info->response (info->response_data);
g_free (info);
@@ -471,7 +471,7 @@
in_real = (GnomeVFSModuleCallbackFullAuthenticationIn *)in;
out_real = (GnomeVFSModuleCallbackFullAuthenticationOut *)out;
- DEBUG_MSG (("+%s uri:'%s' \n", G_GNUC_FUNCTION, in_real->uri));
+ DEBUG_MSG (("+%s uri:'%s' \n", G_STRFUNC, in_real->uri));
info = g_new (FullCallbackInfo, 1);
@@ -482,7 +482,7 @@
present_full_authentication_dialog_nonblocking (info);
- DEBUG_MSG (("-%s\n", G_GNUC_FUNCTION));
+ DEBUG_MSG (("-%s\n", G_STRFUNC));
GDK_THREADS_LEAVE ();
}
@@ -506,11 +506,11 @@
in_real = (GnomeVFSModuleCallbackFullAuthenticationIn *)in;
out_real = (GnomeVFSModuleCallbackFullAuthenticationOut *)out;
- DEBUG_MSG (("+%s uri:'%s'\n", G_GNUC_FUNCTION, in_real->uri));
+ DEBUG_MSG (("+%s uri:'%s'\n", G_STRFUNC, in_real->uri));
present_full_authentication_dialog_blocking (in_real, out_real);
- DEBUG_MSG (("-%s\n", G_GNUC_FUNCTION));
+ DEBUG_MSG (("-%s\n", G_STRFUNC));
GDK_THREADS_LEAVE ();
}
@@ -570,7 +570,7 @@
in_real = (GnomeVFSModuleCallbackFillAuthenticationIn *)in;
out_real = (GnomeVFSModuleCallbackFillAuthenticationOut *)out;
- DEBUG_MSG (("+%s uri:'%s' \n", G_GNUC_FUNCTION, in_real->uri));
+ DEBUG_MSG (("+%s uri:'%s' \n", G_STRFUNC, in_real->uri));
info = g_new (FillCallbackInfo, 1);
@@ -589,7 +589,7 @@
fill_auth_callback,
info, g_free);
- DEBUG_MSG (("-%s\n", G_GNUC_FUNCTION));
+ DEBUG_MSG (("-%s\n", G_STRFUNC));
}
static void /* GnomeVFSModuleCallback */
@@ -612,7 +612,7 @@
in_real = (GnomeVFSModuleCallbackFillAuthenticationIn *)in;
out_real = (GnomeVFSModuleCallbackFillAuthenticationOut *)out;
- DEBUG_MSG (("+%s uri:'%s' \n", G_GNUC_FUNCTION, in_real->uri));
+ DEBUG_MSG (("+%s uri:'%s' \n", G_STRFUNC, in_real->uri));
result = gnome_keyring_find_network_password_sync (in_real->username,
in_real->domain,
@@ -638,7 +638,7 @@
gnome_keyring_network_password_list_free (list);
}
- DEBUG_MSG (("-%s\n", G_GNUC_FUNCTION));
+ DEBUG_MSG (("-%s\n", G_STRFUNC));
}
typedef struct {
@@ -683,7 +683,7 @@
in_real = (GnomeVFSModuleCallbackSaveAuthenticationIn *)in;
out_real = (GnomeVFSModuleCallbackSaveAuthenticationOut *)out;
- DEBUG_MSG (("+%s uri:'%s' \n", G_GNUC_FUNCTION, in_real->uri));
+ DEBUG_MSG (("+%s uri:'%s' \n", G_STRFUNC, in_real->uri));
info = g_new (SaveCallbackInfo, 1);
@@ -704,7 +704,7 @@
save_auth_callback,
info, g_free);
- DEBUG_MSG (("-%s\n", G_GNUC_FUNCTION));
+ DEBUG_MSG (("-%s\n", G_STRFUNC));
}
static void /* GnomeVFSModuleCallback */
@@ -724,7 +724,7 @@
in_real = (GnomeVFSModuleCallbackSaveAuthenticationIn *)in;
- DEBUG_MSG (("+%s uri:'%s' \n", G_GNUC_FUNCTION, in_real->uri));
+ DEBUG_MSG (("+%s uri:'%s' \n", G_STRFUNC, in_real->uri));
/* Check this return? */
result = gnome_keyring_set_network_password_sync (in_real->keyring,
in_real->username,
@@ -737,7 +737,7 @@
in_real->password,
&item);
- DEBUG_MSG (("-%s\n", G_GNUC_FUNCTION));
+ DEBUG_MSG (("-%s\n", G_STRFUNC));
}
typedef struct {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]