aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-09-29 22:14:30 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-10-04 16:41:30 +0800
commite129fe6f1784b3e2b4012961fc9f553b9213d986 (patch)
tree04512abd4455bbe80de8fcad5476520c9907b1a9 /src
parent75b6dbfd673890da51b7b969acfc1b7e9d644760 (diff)
downloadgsoc2013-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.c14
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",