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

« back to all changes in this revision

Viewing changes to widgets/rb-property-view.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:
590
590
}
591
591
 
592
592
/**
593
 
 * rb_property_view_get_num_properties
 
593
 * rb_property_view_get_num_properties:
594
594
 * @view: a #RBPropertyView
595
595
 *
596
596
 * Returns the number of property values present in the view.
880
880
                                            RHYTHMDB_PROPERTY_MODEL_COLUMN_PRIORITY, &is_all, -1);
881
881
                        g_signal_emit (G_OBJECT (view), rb_property_view_signals[PROPERTY_SELECTED], 0,
882
882
                                       is_all ? NULL : selected_prop);
 
883
                } else {
 
884
                        if (gtk_tree_model_get_iter_first (model, &iter))
 
885
                                gtk_tree_selection_select_iter (selection, &iter);
 
886
                        g_signal_emit (G_OBJECT (view), rb_property_view_signals[PROPERTY_SELECTED], 0,
 
887
                                       NULL);
883
888
                }
884
889
        }
885
890