[Xfce4-commits] <parole:master> Fixed warning message on non-cast. Removed unused dependencies from about dialog. Added myself and Simon as authors to about dialog.

Sean Davis noreply at xfce.org
Wed Aug 8 21:38:01 CEST 2012


Updating branch refs/heads/master
         to 0423ce205515026c1432a7f0d038045557ad4dcc (commit)
       from 71f9764c73d299b8ca7327f472f67f3f215069f2 (commit)

commit 0423ce205515026c1432a7f0d038045557ad4dcc
Author: Sean Davis <smd.seandavis at gmail.com>
Date:   Wed Aug 8 15:36:34 2012 -0400

    Fixed warning message on non-cast.  Removed unused dependencies from about dialog.  Added myself and Simon as authors to about dialog.

 src/gst/parole-gst.c |    2 +-
 src/parole-about.c   |    8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/gst/parole-gst.c b/src/gst/parole-gst.c
index 54b51af..dcd4d63 100644
--- a/src/gst/parole-gst.c
+++ b/src/gst/parole-gst.c
@@ -2318,7 +2318,7 @@ gst_set_current_subtitle_track( ParoleGst *gst, gint track_no )
 		  "uri", &uri,
 		  NULL);
 		  
-	sub = parole_get_subtitle_path(uri);
+	sub = (gchar*) parole_get_subtitle_path(uri);
 	
 	gint flags;
 
diff --git a/src/parole-about.c b/src/parole-about.c
index 10e3029..5b1d7c4 100644
--- a/src/parole-about.c
+++ b/src/parole-about.c
@@ -30,23 +30,23 @@
 #undef XFCE_DISABLE_DEPRECATED
 #endif
 #include <libxfce4util/libxfce4util.h>
-#include <libxfce4ui/libxfce4ui.h>
 
 #include "parole-about.h"
-#include "parole-utils.h"
 
 
 void parole_about (GtkWindow *parent)
 {
     static const gchar *authors[] = 
     {
-	"Ali Abdallah <aliov at xfce.org",
+	"Ali Abdallah <aliov at xfce.org>",
+	"Sean Davis <bluesabre at xfce.org>",
+	"Simon Steinbeiss <simon at xfce.org>",
 	NULL,
     };
 
     static const gchar *documenters[] =
     {
-	"Ali Abdallah <aliov at xfce.org",
+	"Ali Abdallah <aliov at xfce.org>",
 	NULL,
     };
     


More information about the Xfce4-commits mailing list