Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv4550/src
Modified Files:
about.c aim.c
Log Message:
I gotta big ol' fat diff for you.
Index: about.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/about.c,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- about.c 2001/10/08 15:07:42 1.50
+++ about.c 2001/10/18 07:22:26 1.51
@@ -115,7 +115,7 @@
/* Left side, TOP */
style = gtk_widget_get_style(about);
pm = gdk_pixmap_create_from_xpm_d(about->window, &bm,
- &style->bg[GTK_STATE_NORMAL], (gchar **)aol_logo);
+ &style->bg[GTK_STATE_NORMAL], (gchar **)gaim_logo_xpm);
pixmap = gtk_pixmap_new(pm, bm);
gdk_pixmap_unref(pm);
gdk_bitmap_unref(bm);
@@ -124,7 +124,7 @@
label =
gtk_label_new(
- _("GAIM is a client that supports AOL's Instant Messenger protocol. It is written\n"
+ _("Gaim is a client that supports AOL's Instant Messenger protocol. It is written\n"
"using Gtk+ and is licensed under the GPL.\n\n" "URL: " WEBSITE "\n\n"
"IRC: #gaim on irc.openprojects.net"));
Index: aim.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/aim.c,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -d -r1.168 -r1.169
--- aim.c 2001/10/18 00:44:42 1.168
+++ aim.c 2001/10/18 07:22:26 1.169
@@ -246,7 +246,7 @@
style = gtk_widget_get_style(mainwindow);
pm = gdk_pixmap_create_from_xpm_d(mainwindow->window, &mask,
- &style->bg[GTK_STATE_NORMAL], (gchar **)aol_logo);
+ &style->bg[GTK_STATE_NORMAL], (gchar **)gaim_logo_xpm);
pmw = gtk_pixmap_new(pm, mask);
gtk_table_attach(GTK_TABLE(table), pmw, 0, 2, 0, 1, 0, 0, 5, 5);
gtk_widget_show(pmw);
|