Updating branch refs/heads/master
         to ca1d697e6a62f49002ab8e6d1a0302b938709072 (commit)
       from 98e3c5f7789eedfc819be52f33553889e0cf87c6 (commit)

commit ca1d697e6a62f49002ab8e6d1a0302b938709072
Author: Sean Davis <[email protected]>
Date:   Tue Nov 13 05:19:32 2012 -0500

    Updated comments and extended copyright info in About dialog.

 src/parole-about.c |   16 +++++++++++++---
 1 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/src/parole-about.c b/src/parole-about.c
index db8291d..e58841c 100644
--- a/src/parole-about.c
+++ b/src/parole-about.c
@@ -34,7 +34,12 @@
 #include "parole-about.h"
 
 
-/* About dialog */
+/**
+ * parole_about:
+ * @parent : the parent application window.
+ *
+ * Display the About dialog for Parole.
+ **/
 void parole_about (GtkWindow *parent)
 {
     /* List of authors */
@@ -46,18 +51,23 @@ void parole_about (GtkWindow *parent)
        NULL,
     };
 
-    /* List of translators */
+    /* List of documentation writers */
     static const gchar *documenters[] =
     {
        "Ali Abdallah <[email protected]>",
        NULL,
     };
     
+    /* Copyright information */
+    static const gchar *copyrights = 
+    "Copyright \302\251 2009-2011 Ali Abdallah\n"
+    "Copyright \302\251 2012 Sean Davis, Simon Steinbeiss";
+    
     gtk_show_about_dialog (parent,
     "authors", authors,
     "comments", _("Parole Media Player"),
     "documenters", documenters,
-    "copyright", "Copyright \302\251 2009-2011 Ali Abdallah",
+    "copyright", copyrights,
     "license", XFCE_LICENSE_GPL,
     "logo-icon-name", "parole",
     "program-name", PACKAGE_NAME,
_______________________________________________
Xfce4-commits mailing list
[email protected]
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to