~matttbe/ubuntu/raring/rhythmbox/lp1010619_RB_2.98

« back to all changes in this revision

Viewing changes to shell/rb-track-transfer-batch.c

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2012-11-06 20:52:57 UTC
  • mfrom: (1.1.67) (214.1.1 quantal-proposed)
  • Revision ID: package-import@ubuntu.com-20121106205257-0btjh8jqley153el
Tags: 2.98-0ubuntu1
* New upstream release (LP: #1060601)
* debian/control.in:
  - Bump minimum glib, gtk, totem-plparser, clutter, and clutter-gst
  - Drop no longer needed musicbrainz dependency
* Refreshed 09_keywords.patch
* Updated 11_fix_cd_pausing.patch with fix from git
* Dropped patches applied in new version:
  - 00git_musicbrainz5.patch
  - 08_CVE-2012-3355.patch
  - dont_free_consumed_floating_gvariant.patch
  - git_scale_click.patch
  - git_crash_during_monitor.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
810
810
        object_class->dispose = impl_dispose;
811
811
 
812
812
        /**
813
 
         * RBTrackTransferBatch:encoding-target
 
813
         * RBTrackTransferBatch:encoding-target:
814
814
         *
815
815
         * A GstEncodingTarget describing allowable target formats.
816
816
         * If NULL, the default set of profiles will be used.
821
821
                                                                     "encoding target",
822
822
                                                                     "GstEncodingTarget",
823
823
                                                                     GST_TYPE_ENCODING_TARGET,
824
 
                                                                     G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
 
824
                                                                     G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
825
825
        /**
826
 
         * RBTrackTransferBatch:source
 
826
         * RBTrackTransferBatch:source:
827
827
         *
828
828
         * The RBSource from which the tracks are being transferred.
829
829
         */
835
835
                                                              RB_TYPE_SOURCE,
836
836
                                                              G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
837
837
        /**
838
 
         * RBTrackTransferBatch:destination
 
838
         * RBTrackTransferBatch:destination:
839
839
         *
840
840
         * The RBSource to which the tracks are being transferred.
841
841
         */
848
848
                                                              G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
849
849
 
850
850
        /**
851
 
         * RBTrackTransferBatch:total-entries
 
851
         * RBTrackTransferBatch:total-entries:
852
852
         *
853
853
         * Total number of entries in the transfer batch.
854
854
         */
860
860
                                                           0, G_MAXINT, 0,
861
861
                                                           G_PARAM_READABLE));
862
862
        /**
863
 
         * RBTrackTransferBatch:done-entries
 
863
         * RBTrackTransferBatch:done-entries:
864
864
         *
865
865
         * Number of entries in the batch that have been transferred.
866
866
         */
872
872
                                                           0, G_MAXINT, 0,
873
873
                                                           G_PARAM_READABLE));
874
874
        /**
875
 
         * RBTrackTransferBatch:progress
 
875
         * RBTrackTransferBatch:progress:
876
876
         *
877
877
         * Fraction of the transfer batch that has been processed.
878
878
         */
885
885
                                                              G_PARAM_READABLE));
886
886
 
887
887
        /**
888
 
         * RBTrackTransferBatch:entry-list
 
888
         * RBTrackTransferBatch:entry-list:
889
889
         *
890
890
         * A list of all entries in the batch.
891
891
         */