~ubuntu-branches/ubuntu/intrepid/rhythmbox/intrepid

« back to all changes in this revision

Viewing changes to plugins/audioscrobbler/rb-audioscrobbler.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-09-03 10:54:50 UTC
  • mfrom: (1.1.27 upstream)
  • Revision ID: james.westby@ubuntu.com-20080903105450-mslsln15n2ap6g7o
Tags: 0.11.6svn20080903-0ubuntu1
* New upstream snapshot:
  - doesn't crash when eject an audio player (lp: #263268)
* debian/patches/80_new_libmtp_build.patch:
  - the change is in the new version
* debian/rules:
  - don't specify a gecko variant that's not required in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
463
463
        if (!audioscrobbler->priv->timeout_id) {
464
464
                rb_debug ("Adding Audioscrobbler timer (15 seconds)");
465
465
                audioscrobbler->priv->timeout_id = 
466
 
                        g_timeout_add (15000, (GSourceFunc) rb_audioscrobbler_timeout_cb,
467
 
                                       audioscrobbler);
 
466
                        g_timeout_add_seconds (15,
 
467
                                               (GSourceFunc) rb_audioscrobbler_timeout_cb,
 
468
                                               audioscrobbler);
468
469
        }
469
470
}
470
471