aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-cell-combo.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2014-01-23 17:12:13 +0800
committerMilan Crha <mcrha@redhat.com>2014-01-23 17:12:13 +0800
commit1b2ae054bf4ec06126403ab5bdad4dc1ce5735cd (patch)
tree42b972fabc6632c2012db54e28f8fcb41267cd10 /e-util/e-cell-combo.c
parenta760291875a40bee556f1301f3b561123bb15121 (diff)
downloadgsoc2013-evolution-1b2ae054bf4ec06126403ab5bdad4dc1ce5735cd.tar
gsoc2013-evolution-1b2ae054bf4ec06126403ab5bdad4dc1ce5735cd.tar.gz
gsoc2013-evolution-1b2ae054bf4ec06126403ab5bdad4dc1ce5735cd.tar.bz2
gsoc2013-evolution-1b2ae054bf4ec06126403ab5bdad4dc1ce5735cd.tar.lz
gsoc2013-evolution-1b2ae054bf4ec06126403ab5bdad4dc1ce5735cd.tar.xz
gsoc2013-evolution-1b2ae054bf4ec06126403ab5bdad4dc1ce5735cd.tar.zst
gsoc2013-evolution-1b2ae054bf4ec06126403ab5bdad4dc1ce5735cd.zip
Replace usage of __FUNCTION__ with G_STRFUNC
Diffstat (limited to 'e-util/e-cell-combo.c')
-rw-r--r--e-util/e-cell-combo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/e-util/e-cell-combo.c b/e-util/e-cell-combo.c
index cb36975be5..e761869232 100644
--- a/e-util/e-cell-combo.c
+++ b/e-util/e-cell-combo.c
@@ -444,7 +444,7 @@ e_cell_combo_show_popup (ECellCombo *ecc,
gtk_widget_show (ecc->popup_window);
e_cell_popup_set_shown (E_CELL_POPUP (ecc), TRUE);
- d (g_print ("%s: popup_shown = TRUE\n", __FUNCTION__));
+ d (g_print ("%s: popup_shown = TRUE\n", G_STRFUNC));
}
/* Calculates the size and position of the popup window (like GtkCombo). */
@@ -668,7 +668,7 @@ e_cell_combo_button_press (GtkWidget *popup_window,
gtk_widget_hide (ecc->popup_window);
e_cell_popup_set_shown (E_CELL_POPUP (ecc), FALSE);
- d (g_print ("%s: popup_shown = FALSE\n", __FUNCTION__));
+ d (g_print ("%s: popup_shown = FALSE\n", G_STRFUNC));
/* We don't want to update the cell here. Since the list is in browse
* mode there will always be one item selected, so when we popup the
@@ -723,7 +723,7 @@ e_cell_combo_button_release (GtkWidget *popup_window,
gtk_widget_hide (ecc->popup_window);
e_cell_popup_set_shown (E_CELL_POPUP (ecc), FALSE);
- d (g_print ("%s: popup_shown = FALSE\n", __FUNCTION__));
+ d (g_print ("%s: popup_shown = FALSE\n", G_STRFUNC));
e_cell_combo_update_cell (ecc);
e_cell_combo_restart_edit (ecc);
@@ -773,7 +773,7 @@ e_cell_combo_key_press (GtkWidget *popup_window,
gtk_widget_hide (ecc->popup_window);
e_cell_popup_set_shown (E_CELL_POPUP (ecc), FALSE);
- d (g_print ("%s: popup_shown = FALSE\n", __FUNCTION__));
+ d (g_print ("%s: popup_shown = FALSE\n", G_STRFUNC));
if (event_keyval != GDK_KEY_Escape)
e_cell_combo_update_cell (ecc);