comparison 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
comparison
equal deleted inserted replaced
1709:11d0deb44a36 1710:f42ce672c560
49 } 49 }
50 50
51 51
52 static void about_click(GtkWidget *w, gpointer m) 52 static void about_click(GtkWidget *w, gpointer m)
53 { 53 {
54 open_url_nw(NULL, "http://gaim.sourceforge.net/"); 54 open_url_nw(NULL, WEBSITE);
55 }
56
57 char *name()
58 {
59 return PACKAGE;
60 }
61
62 char *description()
63 {
64 return WEBSITE;
55 } 65 }
56 66
57 void show_about(GtkWidget *w, void *null) 67 void show_about(GtkWidget *w, void *null)
58 { 68 {
59 GtkWidget *vbox; 69 GtkWidget *vbox;
111 121
112 label = 122 label =
113 gtk_label_new(_ 123 gtk_label_new(_
114 ("GAIM is a client that supports AOL's Instant Messenger protocol. " 124 ("GAIM is a client that supports AOL's Instant Messenger protocol. "
115 "It is written using Gtk+ and is licensed under the GPL.\n" 125 "It is written using Gtk+ and is licensed under the GPL.\n"
116 "URL: http://gaim.sourceforge.net/")); 126 "URL: " WEBSITE));
117 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); 127 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
118 gtk_table_attach_defaults(GTK_TABLE(a_table), label, 0, 2, 0, 2); 128 gtk_table_attach_defaults(GTK_TABLE(a_table), label, 0, 2, 0, 2);
119 129
120 /* Rob */ 130 /* Rob */
121 label = gtk_label_new("Rob Flynn (Maintainer)"); 131 label = gtk_label_new("Rob Flynn (Maintainer)");