
Here's a patch for bug [ 840545 ] Number type warning in help.c
Turns out that it was a very simple case.
Now I'm onto bugs 840539 and 840543
Oh, and I've dusted off my Sourceforge user ID of joncruz
Index: help.c
===================================================================
RCS file: /cvsroot/inkscape/inkscape/src/help.c,v
retrieving revision 1.2
diff -u -r1.2 help.c
--- help.c 30 Oct 2003 05:52:06 -0000 1.2
+++ help.c 12 Nov 2003 17:45:34 -0000
@@ -47,7 +47,7 @@
w = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_window_set_title (GTK_WINDOW (w), _("About inkscape"));
- gtk_window_set_default_size (GTK_WINDOW (w), sp_document_width (doc), sp_document_height (doc));
+ gtk_window_set_default_size (GTK_WINDOW (w), (gint)(sp_document_width(doc)), (gint)(sp_document_height(doc)) );
#if 1
gtk_window_set_policy (GTK_WINDOW (w), TRUE, TRUE, FALSE);
#endif