~ubuntu-branches/ubuntu/raring/banshee/raring

« back to all changes in this revision

Viewing changes to src/Backends/Banshee.Gio/Banshee.Hardware.Gio/DeviceMediaCapabilities.cs

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2012-08-24 02:25:28 UTC
  • mfrom: (1.15.10) (6.4.26 sid)
  • mto: This revision was merged to the branch mainline in revision 143.
  • Revision ID: package-import@ubuntu.com-20120824022528-17uu5u9yfheko50h
Tags: 2.5.0-1
* [2fb3583] Imported Upstream version 2.5.0
* [40793f9] Refresh patches and drop upstreamed Fix-FTBFS….patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
        }
121
121
 
122
122
 
123
 
        public string PlaylistPath {
 
123
        public string[] PlaylistPaths {
124
124
            get {
125
 
                return mpi.PlaylistPath;
 
125
                return mpi.PlaylistPaths;
126
126
            }
127
127
        }
128
128
 
162
162
                LoadProperties ();
163
163
            }
164
164
 
165
 
            public string PlaylistPath {
 
165
            public string[] PlaylistPaths {
166
166
                get; private set;
167
167
            }
168
168
 
206
206
                    }
207
207
 
208
208
                    if (mpi_file.HasKey (StorageGroup, "PlaylistPath")) {
209
 
                        PlaylistPath = mpi_file.GetString (StorageGroup, "PlaylistPath");
 
209
                        PlaylistPaths = mpi_file.GetStringList (StorageGroup, "PlaylistPath");
210
210
                    }
211
211
 
212
212
                    if (mpi_file.HasKey (StorageGroup, "AudioFolders")) {
245
245
            private void InitDefaults ()
246
246
            {
247
247
                FolderDepth = 0;
248
 
                PlaylistPath = "";
 
248
                PlaylistPaths = new string[] {};
249
249
                AudioFolders = new string[] {};
250
250
                InputFormats = new string[] {};
251
251
                OutputFormats = new string[] {};