diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-02-10 05:06:58 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-02-10 05:06:58 +0800 |
commit | 8566eedace4bc9ffe440e3bd057b08a9f3810d09 (patch) | |
tree | ae2f0fe08a3d5cd2eaf28def4106a4bfa422da7e /libempathy-gtk | |
parent | b14a2d1a15a4fa17acd02afb6958ff57a8e0c6d6 (diff) | |
download | gsoc2013-empathy-8566eedace4bc9ffe440e3bd057b08a9f3810d09.tar gsoc2013-empathy-8566eedace4bc9ffe440e3bd057b08a9f3810d09.tar.gz gsoc2013-empathy-8566eedace4bc9ffe440e3bd057b08a9f3810d09.tar.bz2 gsoc2013-empathy-8566eedace4bc9ffe440e3bd057b08a9f3810d09.tar.lz gsoc2013-empathy-8566eedace4bc9ffe440e3bd057b08a9f3810d09.tar.xz gsoc2013-empathy-8566eedace4bc9ffe440e3bd057b08a9f3810d09.tar.zst gsoc2013-empathy-8566eedace4bc9ffe440e3bd057b08a9f3810d09.zip |
Do not export symbols outside the empathy_ namespace.
svn path=/trunk/; revision=613
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/Makefile.am | 3 | ||||
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 2 | ||||
-rw-r--r-- | libempathy-gtk/empathy-contact-list-view.c | 2 | ||||
-rw-r--r-- | libempathy-gtk/empathy-presence-chooser.c | 1 | ||||
-rw-r--r-- | libempathy-gtk/empathy-theme.c | 1 |
5 files changed, 4 insertions, 5 deletions
diff --git a/libempathy-gtk/Makefile.am b/libempathy-gtk/Makefile.am index 083065f81..987e28f2e 100644 --- a/libempathy-gtk/Makefile.am +++ b/libempathy-gtk/Makefile.am @@ -64,7 +64,8 @@ libempathy_gtk_la_LIBADD = \ $(top_builddir)/libempathy/libempathy.la libempathy_gtk_la_LDFLAGS = \ - -version-info ${LIBEMPATHY_GTK_CURRENT}:${LIBEMPATHY_GTK_REVISION}:${LIBEMPATHY_GTK_AGE} + -version-info ${LIBEMPATHY_GTK_CURRENT}:${LIBEMPATHY_GTK_REVISION}:${LIBEMPATHY_GTK_AGE} \ + -export-symbols-regex ^empathy_ libempathy_gtk_headers = \ empathy-images.h \ diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index ad259d2d3..2594ac201 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -279,7 +279,7 @@ empathy_chat_class_init (EmpathyChatClass *klass) G_SIGNAL_RUN_LAST, 0, NULL, NULL, - empathy_marshal_VOID__OBJECT_BOOLEAN, + _empathy_marshal_VOID__OBJECT_BOOLEAN, G_TYPE_NONE, 2, EMPATHY_TYPE_MESSAGE, G_TYPE_BOOLEAN); diff --git a/libempathy-gtk/empathy-contact-list-view.c b/libempathy-gtk/empathy-contact-list-view.c index 1aea4dce4..7dbc9dd87 100644 --- a/libempathy-gtk/empathy-contact-list-view.c +++ b/libempathy-gtk/empathy-contact-list-view.c @@ -322,7 +322,7 @@ empathy_contact_list_view_class_init (EmpathyContactListViewClass *klass) G_SIGNAL_RUN_LAST, 0, NULL, NULL, - empathy_marshal_VOID__OBJECT_STRING_STRING, + _empathy_marshal_VOID__OBJECT_STRING_STRING, G_TYPE_NONE, 3, EMPATHY_TYPE_CONTACT, G_TYPE_STRING, G_TYPE_STRING); diff --git a/libempathy-gtk/empathy-presence-chooser.c b/libempathy-gtk/empathy-presence-chooser.c index e543a5f1f..dfed7bfc7 100644 --- a/libempathy-gtk/empathy-presence-chooser.c +++ b/libempathy-gtk/empathy-presence-chooser.c @@ -37,7 +37,6 @@ #include <libempathy/empathy-idle.h> #include <libempathy/empathy-utils.h> #include <libempathy/empathy-debug.h> -#include <libempathy/empathy-marshal.h> #include <libempathy/empathy-status-presets.h> #include "empathy-ui-utils.h" diff --git a/libempathy-gtk/empathy-theme.c b/libempathy-gtk/empathy-theme.c index c8a9a0d48..dae690b5c 100644 --- a/libempathy-gtk/empathy-theme.c +++ b/libempathy-gtk/empathy-theme.c @@ -26,7 +26,6 @@ #include <libempathy/empathy-debug.h> #include <libempathy/empathy-utils.h> -#include <libempathy/empathy-marshal.h> #include "empathy-chat.h" #include "empathy-conf.h" |