X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/87e14c0a7725be07586b8d3dbe5236d5ef812a10..4ceef22460eca9798463c80ff09c74942d0f25b6:/unix/gtkdlg.c diff --git a/unix/gtkdlg.c b/unix/gtkdlg.c index cefd768a..5472ca62 100644 --- a/unix/gtkdlg.c +++ b/unix/gtkdlg.c @@ -3419,7 +3419,7 @@ static void licence_clicked(GtkButton *button, gpointer data) char *title; char *licence = - "Copyright 1997-2010 Simon Tatham.\n\n" + "Copyright 1997-2011 Simon Tatham.\n\n" "Portions copyright Robert de Bath, Joris van Rantwijk, Delian " "Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas " @@ -3500,12 +3500,14 @@ void about_box(void *window) w, FALSE, FALSE, 5); gtk_widget_show(w); - w = gtk_label_new("Copyright 1997-2010 Simon Tatham. All rights reserved"); + w = gtk_label_new("Copyright 1997-2011 Simon Tatham. All rights reserved"); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(aboutbox)->vbox), w, FALSE, FALSE, 5); gtk_widget_show(w); set_transient_window_pos(GTK_WIDGET(window), aboutbox); + gtk_window_set_transient_for(GTK_WINDOW(aboutbox), + GTK_WINDOW(window)); gtk_widget_show(aboutbox); }