diff -u atomix-2.14.0/debian/changelog atomix-2.14.0/debian/changelog --- atomix-2.14.0/debian/changelog +++ atomix-2.14.0/debian/changelog @@ -1,3 +1,9 @@ +atomix (2.14.0-1ubuntu1) hardy; urgency=low + + * Fixed about dialog close button (LP: #173772) + + -- Marshall Scorcio Mon, 28 Apr 2008 22:01:43 -0500 + atomix (2.14.0-1) unstable; urgency=low * New upstream release diff -u atomix-2.14.0/debian/control atomix-2.14.0/debian/control --- atomix-2.14.0/debian/control +++ atomix-2.14.0/debian/control @@ -1,7 +1,8 @@ Source: atomix Section: games Priority: optional -Maintainer: Guilherme de S. Pastore +Maintainer: Ubuntu Core Developers +XSBC-Original-Maintainer: Guilherme de S. Pastore Build-Depends: cdbs, debhelper (>= 4.1.0), libgnome2-dev, libgnomeui-dev, libglib2.0-dev, libgtk2.0-dev, libxml2-dev, gettext, libxml-parser-perl Standards-Version: 3.6.2 only in patch2: unchanged: --- atomix-2.14.0.orig/src/main.c +++ atomix-2.14.0/src/main.c @@ -167,16 +167,15 @@ NULL }; - dlg = gtk_about_dialog_new (); - gtk_about_dialog_set_name (GTK_ABOUT_DIALOG(dlg), "Atomix"); - gtk_about_dialog_set_version (GTK_ABOUT_DIALOG(dlg), VERSION); - gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG(dlg), _("A puzzle game about atoms and molecules")); - gtk_about_dialog_set_website (GTK_ABOUT_DIALOG(dlg), "http://www.gnome.org/projects/atomix"); - gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG(dlg), authors); - gtk_about_dialog_set_artists (GTK_ABOUT_DIALOG(dlg), artists); - gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG(dlg), _("translator-credits")); - - gtk_widget_show (dlg); + gtk_show_about_dialog(GTK_WINDOW(app->mainwin), + "program-name", _("Atomix"), + "version", VERSION, + "comments", _("A puzzle game about atoms and molecules"), + "website", _("http://www.gnome.org/projects/atomix"), + "authors", authors, + "artists", artists, + "translator_credits", _("translator-credits"), + NULL); } static gboolean on_app_destroy_event (GtkWidget *widget, GdkEvent *event,