~swem/totem/assignment

« back to all changes in this revision

Viewing changes to src/totem-playlist.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-02-25 19:11:33 UTC
  • mfrom: (1.4.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100225191133-7bonpywglovrzohq
Tags: 2.29.91-1
* New upstream development release:
  + debian/patches/90_autotools.patch:
    - Refreshed for the new version.
  + debian/control.in:
    - Update build dependencies and dependencies.
* debian/patches/99_gst-bus_flush.patch:
  + Patch from upstream GIT to fix automatic codec installation
    and random errors showing up from previous tracks.
* debian/control.in:
  + Add ATK build dependency to allow buildds to actually install
    the correct version instead of producing an error.

Show diffs side-by-side

added added

removed removed

Lines of Context:
221
221
        GtkWidget *parent;
222
222
 
223
223
        parent = GTK_WIDGET (totem_playlist_get_toplevel (playlist));
224
 
        totem_gdk_window_set_waiting_cursor (parent->window);
 
224
        totem_gdk_window_set_waiting_cursor (gtk_widget_get_window (parent));
225
225
}
226
226
 
227
227
static void
230
230
        GtkWidget *parent;
231
231
 
232
232
        parent = GTK_WIDGET (totem_playlist_get_toplevel (playlist));
233
 
        gdk_window_set_cursor (parent->window, NULL);
 
233
        gdk_window_set_cursor (gtk_widget_get_window (parent), NULL);
234
234
}
235
235
 
236
236
static void
510
510
        if (context->action == GDK_ACTION_MOVE)
511
511
                totem_playlist_clear (playlist);
512
512
 
513
 
        list = g_uri_list_extract_uris ((char *)data->data);
 
513
        list = g_uri_list_extract_uris ((char *) gtk_selection_data_get_data (data));
514
514
        file_list = NULL;
515
515
 
516
516
        for (i = 0; list[i] != NULL; i++) {