diff options
-rw-r--r-- | libempathy-gtk/empathy-account-widget.c | 3 | ||||
-rw-r--r-- | libempathy/empathy-account-settings.c | 2 | ||||
-rw-r--r-- | libempathy/empathy-account-settings.h | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-account-widget.c b/libempathy-gtk/empathy-account-widget.c index 2ba38d66b..9d9d47dbd 100644 --- a/libempathy-gtk/empathy-account-widget.c +++ b/libempathy-gtk/empathy-account-widget.c @@ -121,7 +121,8 @@ account_widget_int_changed_cb (GtkWidget *widget, value = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (widget)); param_name = g_object_get_data (G_OBJECT (widget), "param_name"); - signature = empathy_settings_get_dbus_signature (priv->settings, param_name); + signature = empathy_account_settings_get_dbus_signature (priv->settings, + param_name); g_return_if_fail (signature != NULL); DEBUG ("Setting %s to %d", param_name, value); diff --git a/libempathy/empathy-account-settings.c b/libempathy/empathy-account-settings.c index bdf8024e8..fbd0724d1 100644 --- a/libempathy/empathy-account-settings.c +++ b/libempathy/empathy-account-settings.c @@ -521,7 +521,7 @@ empathy_account_settings_get_default (EmpathyAccountSettings *settings, } const gchar * -empathy_settings_get_dbus_signature (EmpathyAccountSettings *settings, +empathy_account_settings_get_dbus_signature (EmpathyAccountSettings *settings, const gchar *param) { TpConnectionManagerParam *p; diff --git a/libempathy/empathy-account-settings.h b/libempathy/empathy-account-settings.h index 8ae692212..9bb6657e2 100644 --- a/libempathy/empathy-account-settings.h +++ b/libempathy/empathy-account-settings.h @@ -90,7 +90,7 @@ const GValue *empathy_account_settings_get (EmpathyAccountSettings *settings, const gchar *param); const gchar * -empathy_settings_get_dbus_signature (EmpathyAccountSettings *setting, +empathy_account_settings_get_dbus_signature (EmpathyAccountSettings *setting, const gchar *param); const GValue * |