diff options
author | Davyd Madeley <davyd@madeley.id.au> | 2009-04-23 15:29:57 +0800 |
---|---|---|
committer | Davyd Madeley <davyd@madeley.id.au> | 2009-04-23 15:29:57 +0800 |
commit | 40b9a5d3b177c458555342a90a56934a40564f59 (patch) | |
tree | f1b236c3856103022ea2729166aadc8a16d3cb4d /libempathy-gtk/empathy-status-preset-dialog.c | |
parent | 93cc6d738d5fc2a91b257c568dd08687368fe637 (diff) | |
download | gsoc2013-empathy-40b9a5d3b177c458555342a90a56934a40564f59.tar gsoc2013-empathy-40b9a5d3b177c458555342a90a56934a40564f59.tar.gz gsoc2013-empathy-40b9a5d3b177c458555342a90a56934a40564f59.tar.bz2 gsoc2013-empathy-40b9a5d3b177c458555342a90a56934a40564f59.tar.lz gsoc2013-empathy-40b9a5d3b177c458555342a90a56934a40564f59.tar.xz gsoc2013-empathy-40b9a5d3b177c458555342a90a56934a40564f59.tar.zst gsoc2013-empathy-40b9a5d3b177c458555342a90a56934a40564f59.zip |
Fix function naming
Diffstat (limited to 'libempathy-gtk/empathy-status-preset-dialog.c')
-rw-r--r-- | libempathy-gtk/empathy-status-preset-dialog.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libempathy-gtk/empathy-status-preset-dialog.c b/libempathy-gtk/empathy-status-preset-dialog.c index 085332f35..76ae06d40 100644 --- a/libempathy-gtk/empathy-status-preset-dialog.c +++ b/libempathy-gtk/empathy-status-preset-dialog.c @@ -93,7 +93,7 @@ empathy_status_preset_dialog_class_init (EmpathyStatusPresetDialogClass *class) } static void -status_preset_dialog_setup_presets_update (EmpathyStatusPresetDialog *self) +status_preset_dialog_presets_update (EmpathyStatusPresetDialog *self) { EmpathyStatusPresetDialogPriv *priv = GET_PRIV (self); GtkListStore *store; @@ -203,7 +203,7 @@ status_preset_dialog_setup_presets_treeview (EmpathyStatusPresetDialog *self) GTK_TREE_MODEL (store)); g_object_unref (store); - status_preset_dialog_setup_presets_update (self); + status_preset_dialog_presets_update (self); column = gtk_tree_view_column_new (); gtk_tree_view_append_column (GTK_TREE_VIEW (treeview), column); @@ -255,7 +255,7 @@ status_preset_dialog_preset_remove (GtkButton *button, g_free (status); - status_preset_dialog_setup_presets_update (self); + status_preset_dialog_presets_update (self); } static void @@ -349,7 +349,7 @@ status_preset_dialog_add_preset (GtkWidget *widget, DEBUG ("ADD PRESET (%i, %s)\n", state, status); empathy_status_presets_set_last (state, status); - status_preset_dialog_setup_presets_update (self); + status_preset_dialog_presets_update (self); status_preset_add_combo_reset (self); } |