Show
Ignore:
Timestamp:
09/17/08 01:02:16 (4 months ago)
Author:
topia
Message:

fix Signature of ITunesApp.ConvertTracks?.
* Add more XML documentation comments.
* split ITunesApp interface as IITunesApp.
* This is ABI breakage, bump major version.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Sources.cs

    r19308 r19406  
    6161            IPlaylist playlist = this.Children[playlistName]; 
    6262            if (playlist != null) 
    63             { 
    6463                return playlist; 
    65             } 
    6664            return this.CreatePlaylist(playlistName); 
    6765        } 
     
    7169            IPlaylist playlist = this.Children[folderName]; 
    7270            if (playlist != null) 
    73             { 
    7471                return playlist; 
    75             } 
    7672            return this.CreateFolder(folderName); 
    7773        }