aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libempathy/empathy-account-settings.c6
-rw-r--r--libempathy/empathy-account-settings.h3
2 files changed, 5 insertions, 4 deletions
diff --git a/libempathy/empathy-account-settings.c b/libempathy/empathy-account-settings.c
index e37b098df..c7088b07d 100644
--- a/libempathy/empathy-account-settings.c
+++ b/libempathy/empathy-account-settings.c
@@ -492,6 +492,10 @@ empathy_account_settings_migrate_password_cb (GObject *source,
g_hash_table_unref (empty);
}
+static const GValue * empathy_account_settings_get (
+ EmpathyAccountSettings *settings,
+ const gchar *param);
+
static void
empathy_account_settings_try_migrating_password (EmpathyAccountSettings *self)
{
@@ -856,7 +860,7 @@ empathy_account_settings_get_dbus_signature (EmpathyAccountSettings *settings,
return tp_connection_manager_param_get_dbus_signature (p);
}
-const GValue *
+static const GValue *
empathy_account_settings_get (EmpathyAccountSettings *settings,
const gchar *param)
{
diff --git a/libempathy/empathy-account-settings.h b/libempathy/empathy-account-settings.h
index baa0ad76e..9e091c3c2 100644
--- a/libempathy/empathy-account-settings.h
+++ b/libempathy/empathy-account-settings.h
@@ -100,9 +100,6 @@ void empathy_account_settings_unset (EmpathyAccountSettings *settings,
void empathy_account_settings_discard_changes (
EmpathyAccountSettings *settings);
-const GValue *empathy_account_settings_get (EmpathyAccountSettings *settings,
- const gchar *param);
-
const gchar *
empathy_account_settings_get_dbus_signature (EmpathyAccountSettings *setting,
const gchar *param);