[Xfce4-commits] <midori:master> Fix signedness warning in midori_view_tab_label_data_received

Christian Dywan noreply at xfce.org
Wed Apr 20 00:32:01 CEST 2011


Updating branch refs/heads/master
         to 474358d9725b241849c0a4efa57524735deec9c3 (commit)
       from a9a220f96cdb95a5eb2ee23eed3a42737eb52a07 (commit)

commit 474358d9725b241849c0a4efa57524735deec9c3
Author: Cyril Brulebois <kibi at debian.org>
Date:   Sun Apr 10 05:38:46 2011 +0200

    Fix signedness warning in midori_view_tab_label_data_received

 midori/midori-view.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/midori/midori-view.c b/midori/midori-view.c
index 7537135..e6495df 100644
--- a/midori/midori-view.c
+++ b/midori/midori-view.c
@@ -4890,7 +4890,7 @@ static void midori_view_tab_label_data_received (GtkWidget* widget,
     }
     else
     {
-        text = gtk_selection_data_get_text (data);
+        text = (gchar*) gtk_selection_data_get_text (data);
         midori_view_set_uri (view, text);
         g_free (text);
     }



More information about the Xfce4-commits mailing list