diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-09-29 22:14:30 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-10-04 16:41:30 +0800 |
commit | e129fe6f1784b3e2b4012961fc9f553b9213d986 (patch) | |
tree | 04512abd4455bbe80de8fcad5476520c9907b1a9 /src | |
parent | 75b6dbfd673890da51b7b969acfc1b7e9d644760 (diff) | |
download | gsoc2013-empathy-e129fe6f1784b3e2b4012961fc9f553b9213d986.tar gsoc2013-empathy-e129fe6f1784b3e2b4012961fc9f553b9213d986.tar.gz gsoc2013-empathy-e129fe6f1784b3e2b4012961fc9f553b9213d986.tar.bz2 gsoc2013-empathy-e129fe6f1784b3e2b4012961fc9f553b9213d986.tar.lz gsoc2013-empathy-e129fe6f1784b3e2b4012961fc9f553b9213d986.tar.xz gsoc2013-empathy-e129fe6f1784b3e2b4012961fc9f553b9213d986.tar.zst gsoc2013-empathy-e129fe6f1784b3e2b4012961fc9f553b9213d986.zip |
about-dialog: gtk_about_dialog_set_url_hook has been removed
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-about-dialog.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/empathy-about-dialog.c b/src/empathy-about-dialog.c index e3176c057..c1e18487c 100644 --- a/src/empathy-about-dialog.c +++ b/src/empathy-about-dialog.c @@ -33,10 +33,6 @@ #define WEB_SITE "http://live.gnome.org/Empathy" -static void about_dialog_activate_link_cb (GtkAboutDialog *about, - const gchar *link, - gpointer data); - static const char *authors[] = { "Alban Crequy", "Andreas Lööw", @@ -95,21 +91,11 @@ static const char *license[] = { "51 Franklin Street, Fifth Floor, Boston, MA 02110-130159 USA") }; -static void -about_dialog_activate_link_cb (GtkAboutDialog *about, - const gchar *link_, - gpointer data) -{ - empathy_url_show (GTK_WIDGET (about), link_); -} - void empathy_about_dialog_new (GtkWindow *parent) { gchar *license_trans; - gtk_about_dialog_set_url_hook (about_dialog_activate_link_cb, NULL, NULL); - license_trans = g_strconcat (_(license[0]), "\n\n", _(license[1]), "\n\n", _(license[2]), "\n\n", |