aboutsummaryrefslogtreecommitdiff
path: root/src/ka-tools.c
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2013-03-31 16:24:35 +0200
committerGuido Günther <agx@sigxcpu.org>2013-03-31 16:24:35 +0200
commit6c66f3c0bfc6c655c53e552ba8ef487700a6e0bc (patch)
treeec0da0d6be6e02f3e237ec35743f213df218f7d2 /src/ka-tools.c
parentNew upstream version 3.2.1 (diff)
downloadkrb5-auth-dialog-6c66f3c0bfc6c655c53e552ba8ef487700a6e0bc.tar.gz
krb5-auth-dialog-6c66f3c0bfc6c655c53e552ba8ef487700a6e0bc.tar.bz2
krb5-auth-dialog-6c66f3c0bfc6c655c53e552ba8ef487700a6e0bc.zip
New upstream version 3.8.0
Diffstat (limited to 'src/ka-tools.c')
-rw-r--r--src/ka-tools.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ka-tools.c b/src/ka-tools.c
index 227324a..18f9ba8 100644
--- a/src/ka-tools.c
+++ b/src/ka-tools.c
@@ -58,8 +58,10 @@ ka_show_help (GdkScreen* screen, const char* chapter, GtkWindow* window)
void
-ka_show_about ()
+ka_show_about (KaApplet *applet)
{
+ GtkWindow *parent = ka_applet_last_focused_window (applet);
+
const gchar *authors[] = {
"Christopher Aillon <caillon@redhat.com>",
"Jonathan Blandford <jrb@redhat.com>",
@@ -68,7 +70,7 @@ ka_show_about ()
NULL
};
- gtk_show_about_dialog (NULL,
+ gtk_show_about_dialog (parent,
"authors", authors,
"version", VERSION,
"logo-icon-name", "krb-valid-ticket",
bgstack15