~ubuntu-branches/ubuntu/trusty/banshee/trusty

« back to all changes in this revision

Viewing changes to src/Extensions/Banshee.InternetRadio/Banshee.InternetRadio/StationEditor.cs

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2014-02-09 23:06:03 UTC
  • mfrom: (1.2.26) (150.1.2 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20140209230603-7dhbveo058j96ea0
Tags: 2.9.0+really2.6.1-0ubuntu1
* [fbf05ca] Imported Upstream version 2.9.0+really2.6.1:
  Downgrade to 2.6.1 -- 2.9.x is unstable and 3.0 won't arrive in time for
  release
* [22de440] Revert packaging to 2.6.1-2ubuntu1
* [7357b73] Merge changes from 2.6.1-5
* [a7156c0] Filter out libgpod-cil-dev versions built against gtk#3
* [e7c634d] Update dversionmangle for extracting +really version out

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
        private Entry description_entry;
45
45
        private Entry stream_entry;
46
46
        private Entry creator_entry;
47
 
        private ComboBoxText genre_entry;
 
47
        private ComboBoxEntry genre_entry;
48
48
        private RatingEntry rating_entry;
49
49
        private Alignment error_container;
50
50
        private Label error;
68
68
                : Catalog.GetString ("Edit radio station");
69
69
 
70
70
            BorderWidth = 6;
 
71
            HasSeparator = false;
71
72
            DefaultResponse = ResponseType.Ok;
72
73
            Modal = true;
73
74
 
74
 
            ContentArea.Spacing = 6;
 
75
            VBox.Spacing = 6;
75
76
 
76
77
            HBox split_box = new HBox ();
77
78
            split_box.Spacing = 12;
102
103
            table.RowSpacing = 6;
103
104
            table.ColumnSpacing = 6;
104
105
 
105
 
            genre_entry = ComboBoxText.NewWithEntry ();
 
106
            genre_entry = ComboBoxEntry.NewText ();
106
107
 
107
108
            foreach (string genre in ServiceManager.DbConnection.QueryEnumerable<string> ("SELECT DISTINCT Genre FROM CoreTracks ORDER BY Genre")) {
108
109
                if (!String.IsNullOrEmpty (genre)) {
137
138
            split_box.PackStart (main_box, true, true, 0);
138
139
            split_box.Show ();
139
140
 
140
 
            ContentArea.PackStart (split_box, true, true, 0);
 
141
            VBox.PackStart (split_box, true, true, 0);
141
142
 
142
143
            Button cancel_button = new Button (Stock.Cancel);
143
144
            cancel_button.CanDefault = false;