GNOME Bugzilla – Bug 135958
Cannot compile with GCC 2.95
Last modified: 2004-12-22 21:47:04 UTC
Version should be 1.3.x but that was not an option. gucharmap-window.c does not compile with GCC 2.95 ( default debian compiler ). Below is a patch that will fix the error. --- gucharmap-window.c.old Tue Mar 2 08:26:17 2004 +++ gucharmap/work/main.d/gucharmap-1.3.0/gucharmap/gucharmap-window.c Tue Mar 2 08:27:57 2004 @@ -120,10 +120,11 @@ search_start (GucharmapSearchDialog *search_dialog, GucharmapWindow *guw) { + GdkCursor *cursor = gdk_cursor_new (GDK_WATCH); + GucharmapWindowPrivate *priv = GUCHARMAP_WINDOW_GET_PRIVATE (guw); g_assert (IS_GUCHARMAP_WINDOW (guw)); - GdkCursor *cursor = gdk_cursor_new (GDK_WATCH); gdk_window_set_cursor (GTK_WIDGET (guw)->window, cursor); gdk_cursor_unref (cursor);
*** This bug has been marked as a duplicate of 127629 ***