aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-06-06 20:22:35 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-06-07 15:12:53 +0800
commit18de9f76fa8ec188b5805a8b2c78aa8bbd80f4f6 (patch)
tree6c813a1a737a669e5fa5c97a36d4e16d7619f6a0 /libempathy
parentf39236c18404ea048293067012d6504757198362 (diff)
downloadgsoc2013-empathy-18de9f76fa8ec188b5805a8b2c78aa8bbd80f4f6.tar
gsoc2013-empathy-18de9f76fa8ec188b5805a8b2c78aa8bbd80f4f6.tar.gz
gsoc2013-empathy-18de9f76fa8ec188b5805a8b2c78aa8bbd80f4f6.tar.bz2
gsoc2013-empathy-18de9f76fa8ec188b5805a8b2c78aa8bbd80f4f6.tar.lz
gsoc2013-empathy-18de9f76fa8ec188b5805a8b2c78aa8bbd80f4f6.tar.xz
gsoc2013-empathy-18de9f76fa8ec188b5805a8b2c78aa8bbd80f4f6.tar.zst
gsoc2013-empathy-18de9f76fa8ec188b5805a8b2c78aa8bbd80f4f6.zip
make empathy_account_settings_get() static
https://bugzilla.gnome.org/show_bug.cgi?id=677545
Diffstat (limited to 'libempathy')
-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);