]> git.0d.be Git - empathy.git/commitdiff
Merge branch 'trivia'
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Thu, 22 Oct 2009 13:37:26 +0000 (14:37 +0100)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Thu, 22 Oct 2009 13:37:26 +0000 (14:37 +0100)
1  2 
libempathy-gtk/empathy-avatar-chooser.c

index 26528ef0c417525a91eb4d2d4906797fc0ce4177,3633e2b78da924bba4144ec214dcebc7899a696c..df47d48e87d259fd432e9f9a3c367ce64c6fccb3
@@@ -411,7 -411,7 +411,7 @@@ avatar_chooser_maybe_convert_and_scale 
        guint                     max_width = 0, max_height = 0, max_size = 0;
        gchar                   **mime_types = NULL;
        gboolean                  needs_conversion = FALSE;
-       gint                      width, height;
+       guint                     width, height;
        gchar                    *new_format_name = NULL;
        gchar                    *new_mime_type = NULL;
        gdouble                   min_factor, max_factor;
                 *   a difference of 1k.
                 */
        } while (min_factor != max_factor &&
-                ABS (max_size - converted_image_size) > 1024);
+                abs (max_size - converted_image_size) > 1024);
        g_free (new_format_name);
  
        /* Takes ownership of new_mime_type and converted_image_data */
-       avatar = empathy_avatar_new (converted_image_data,
+       avatar = empathy_avatar_new ((guchar *) converted_image_data,
                converted_image_size, new_mime_type, NULL, NULL);
  
        return avatar;
@@@ -599,7 -599,7 +599,7 @@@ avatar_chooser_set_image_from_data (Emp
        }
  
        /* avatar takes ownership of data and mime_type */
-       avatar = empathy_avatar_new (data, size, mime_type, NULL, NULL);
+       avatar = empathy_avatar_new ((guchar *) data, size, mime_type, NULL, NULL);
  
        avatar_chooser_set_image (chooser, avatar, pixbuf, set_locally);
  }
@@@ -614,7 -614,7 +614,7 @@@ avatar_chooser_set_image_from_avatar (E
  
        g_assert (avatar != NULL);
  
-       pixbuf = empathy_pixbuf_from_data_and_mime (avatar->data,
+       pixbuf = empathy_pixbuf_from_data_and_mime ((gchar *) avatar->data,
                                                    avatar->len,
                                                    &mime_type);
        if (pixbuf == NULL) {
@@@ -704,7 -704,7 +704,7 @@@ avatar_chooser_drag_motion_cb (GtkWidge
                              GdkDragContext     *context,
                              gint                x,
                              gint                y,
-                             guint               time,
+                             guint               time_,
                              EmpathyAvatarChooser *chooser)
  {
        EmpathyAvatarChooserPriv *priv;
  
                if (!strcmp (possible_type, URI_LIST_TYPE)) {
                        g_free (possible_type);
-                       gdk_drag_status (context, GDK_ACTION_COPY, time);
+                       gdk_drag_status (context, GDK_ACTION_COPY, time_);
  
                        return TRUE;
                }
  static void
  avatar_chooser_drag_leave_cb (GtkWidget          *widget,
                             GdkDragContext     *context,
-                            guint               time,
+                            guint               time_,
                             EmpathyAvatarChooser *chooser)
  {
  }
@@@ -743,7 -743,7 +743,7 @@@ avatar_chooser_drag_drop_cb (GtkWidge
                            GdkDragContext     *context,
                            gint                x,
                            gint                y,
-                           guint               time,
+                           guint               time_,
                            EmpathyAvatarChooser *chooser)
  {
        EmpathyAvatarChooserPriv *priv;
                        g_free (possible_type);
                        gtk_drag_get_data (widget, context,
                                           GDK_POINTER_TO_ATOM (p->data),
-                                          time);
+                                          time_);
  
                        return TRUE;
                }
@@@ -781,7 -781,7 +781,7 @@@ avatar_chooser_drag_data_received_cb (G
                                     gint                y,
                                     GtkSelectionData   *selection_data,
                                     guint               info,
-                                    guint               time,
+                                    guint               time_,
                                     EmpathyAvatarChooser *chooser)
  {
        gchar    *target_type;
                gchar            *data = NULL;
                gsize             bytes_read;
  
-               nl = strstr (gtk_selection_data_get_data (selection_data), "\r\n");
+               nl = strstr ((gchar *) gtk_selection_data_get_data (selection_data),
+                                               "\r\n");
                if (nl) {
                        gchar *uri;
  
-                       uri = g_strndup (gtk_selection_data_get_data (selection_data),
+                       uri = g_strndup ((gchar *) gtk_selection_data_get_data (selection_data),
                                         nl - (gchar *) gtk_selection_data_get_data (selection_data));
  
                        file = g_file_new_for_uri (uri);
                        g_free (uri);
                } else {
-                       file = g_file_new_for_uri (gtk_selection_data_get_data (selection_data));
+                       file = g_file_new_for_uri ((gchar *) gtk_selection_data_get_data (
+                                               selection_data));
                }
  
                handled = g_file_load_contents (file, NULL, &data, &bytes_read,
                                                NULL, NULL);
  
                if (handled) {
 -                      /* this in turn calls empathy_avatar_new(), which assumes
 +                      /* this in turn calls empathy_avatar_new (), which assumes
                         * ownership of data.
                         */
                        avatar_chooser_set_image_from_data (chooser, data,
                g_object_unref (file);
        }
  
-       gtk_drag_finish (context, handled, FALSE, time);
+       gtk_drag_finish (context, handled, FALSE, time_);
  }
  
  static void
@@@ -1049,7 -1051,7 +1051,7 @@@ empathy_avatar_chooser_get_image_data (
  
        if (priv->avatar != NULL) {
                if (data != NULL) {
-                       *data = priv->avatar->data;
+                       *data = (gchar *) priv->avatar->data;
                }
                if (data_size != NULL) {
                        *data_size = priv->avatar->len;