diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-09-22 18:23:14 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-09-29 18:52:10 +0800 |
commit | a59a1e8874cdf7c0e1bc323543820f9a36167933 (patch) | |
tree | dd30c8c096caaaa35946e32e8928f296e717578b | |
parent | af102f5b5497c155bece1e6d30a5efac06c86d68 (diff) | |
download | gsoc2013-empathy-a59a1e8874cdf7c0e1bc323543820f9a36167933.tar gsoc2013-empathy-a59a1e8874cdf7c0e1bc323543820f9a36167933.tar.gz gsoc2013-empathy-a59a1e8874cdf7c0e1bc323543820f9a36167933.tar.bz2 gsoc2013-empathy-a59a1e8874cdf7c0e1bc323543820f9a36167933.tar.lz gsoc2013-empathy-a59a1e8874cdf7c0e1bc323543820f9a36167933.tar.xz gsoc2013-empathy-a59a1e8874cdf7c0e1bc323543820f9a36167933.tar.zst gsoc2013-empathy-a59a1e8874cdf7c0e1bc323543820f9a36167933.zip |
geometry: no need to export _load and _save
-rw-r--r-- | libempathy-gtk/empathy-geometry.c | 4 | ||||
-rw-r--r-- | libempathy-gtk/empathy-geometry.h | 6 |
2 files changed, 2 insertions, 8 deletions
diff --git a/libempathy-gtk/empathy-geometry.c b/libempathy-gtk/empathy-geometry.c index 9cf63817e..fe24b61b5 100644 --- a/libempathy-gtk/empathy-geometry.c +++ b/libempathy-gtk/empathy-geometry.c @@ -126,7 +126,7 @@ geometry_get_key_file (void) return key_file; } -void +static void empathy_geometry_save (GtkWindow *window, const gchar *name) { @@ -177,7 +177,7 @@ empathy_geometry_save (GtkWindow *window, g_free (escaped_name); } -void +static void empathy_geometry_load (GtkWindow *window, const gchar *name) { diff --git a/libempathy-gtk/empathy-geometry.h b/libempathy-gtk/empathy-geometry.h index dc8fab650..17c067de3 100644 --- a/libempathy-gtk/empathy-geometry.h +++ b/libempathy-gtk/empathy-geometry.h @@ -29,12 +29,6 @@ G_BEGIN_DECLS -void empathy_geometry_save (GtkWindow *window, - const gchar *name); - -void empathy_geometry_load (GtkWindow *window, - const gchar *name); - void empathy_geometry_bind (GtkWindow *window, const gchar *name); |