Changeset 160

Show
Ignore:
Timestamp:
03/08/07 22:58:30 (2 years ago)
Author:
mgeske2
Message:

Small bugfix in MusicPlayerControl?.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dmp/trunk/vlc.NET/IMusicPlayer.cs

    r159 r160  
    2323        void Stop(); 
    2424        void AddSongToPlaylist(int songId, String url, String title); 
    25         void AddAndPlay(String fileName, String options); 
     25        void AddAndPlaySong(int songId, String url, String title); 
    2626        void ClearPlayList(); 
    2727        void ToggleMute(); 
  • dmp/trunk/vlc.NET/MusicPlayerControl.cs

    r159 r160  
    3838        } 
    3939 
     40        public void AddAndPlaySong(int songId, String url, String title) 
     41        { 
     42            AddSongToPlaylist(songId, url, title); 
     43            PlaySong(songId); 
     44        } 
     45 
    4046        public void PlaySong(int songId) 
    4147        { 
  • dmp/trunk/vlc.NET/VLanControl.csproj

    r159 r160  
    5656    </Compile> 
    5757    <Compile Include="IPlayer.cs" /> 
    58     <Compile Include="MusicPlayer.cs" /> 
     58    <Compile Include="IMusicPlayer.cs" /> 
    5959    <Compile Include="MusicPlayerControl.cs"> 
    6060      <SubType>UserControl</SubType>