diff src/about.c @ 1710:f42ce672c560

[gaim-migrate @ 1720] various fixes (for plugins especially), other updates. made WEBSITE macro so it's easy to change (not that i think it'll be changing again), updated some files to reflect that change. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 13 Apr 2001 10:50:33 +0000
parents cce40a648f7a
children b7b1bb01fa94
line wrap: on
line diff
--- a/src/about.c	Fri Apr 13 08:15:44 2001 +0000
+++ b/src/about.c	Fri Apr 13 10:50:33 2001 +0000
@@ -51,7 +51,17 @@
 
 static void about_click(GtkWidget *w, gpointer m)
 {
-	open_url_nw(NULL, "http://gaim.sourceforge.net/");
+	open_url_nw(NULL, WEBSITE);
+}
+
+char *name()
+{
+	return PACKAGE;
+}
+
+char *description()
+{
+	return WEBSITE;
 }
 
 void show_about(GtkWidget *w, void *null)
@@ -113,7 +123,7 @@
 		    gtk_label_new(_
 				  ("GAIM is a client that supports AOL's Instant Messenger protocol. "
 				   "It is written using Gtk+ and is licensed under the GPL.\n"
-				   "URL: http://gaim.sourceforge.net/"));
+				   "URL: " WEBSITE));
 		gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
 		gtk_table_attach_defaults(GTK_TABLE(a_table), label, 0, 2, 0, 2);