diff options
author | Benjamin Otte <otte@gnome.org> | 2007-10-21 18:12:46 +0200 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2007-10-21 18:12:46 +0200 |
commit | 6df59db6a88d7ea85d674a1c67466fe52b45dcbe (patch) | |
tree | bebd4ad58c2dba5888be72f28dc1583166596441 /player | |
parent | 01740e53bfc4b71b4ef3c796ed061cad2a5ee621 (diff) |
make about dialog work
Diffstat (limited to 'player')
-rw-r--r-- | player/swfdec-window-handlers.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/player/swfdec-window-handlers.c b/player/swfdec-window-handlers.c index a7736f0..5ca190d 100644 --- a/player/swfdec-window-handlers.c +++ b/player/swfdec-window-handlers.c @@ -42,6 +42,24 @@ menu_file_close (GtkAction *action, SwfdecWindow *window) void menu_help_about (GtkAction *action, SwfdecWindow *window) { + static const char *authors[] = { + "Benjamin Otte <otte@gnome.org>", + "Pekka Lampila <pekka.lampila@iki.fi>", + NULL, + }; + static const char *artists[] = { + "Cristian Grada <krigenator@gmail.com>", + NULL + }; + + gtk_show_about_dialog (NULL, + "logo-icon-name", "swfdec", + "authors", authors, + "artists", artists, + "comments", "Play Adobe Flash files", + "version", VERSION, + "website", "http://swfdec.freedesktop.org/", + NULL); } gboolean |