Changeset ccf834a51a5ba339dff515333118635aaa3b9047

Show
Ignore:
Timestamp:
05/14/06 23:57:37 (2 years ago)
Author:
Felix Paul Kühne <fkuehne@videolan.org>
git-committer:
Felix Paul Kühne <fkuehne@videolan.org> 1147643857 +0000
git-parent:

[88528f4cf58865945d3f13b5f9260ebc6f4caf6b]

git-author:
Felix Paul Kühne <fkuehne@videolan.org> 1147643857 +0000
Message:

* more compilation fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/macosx/intf.m

    red0b72e rccf834a  
    976976            /* chapters & titles */ 
    977977            //b_chapters = p_intf->p_sys->p_input->stream.i_area_nb > 1; 
    978             vlc_object_release( p_input ); 
     978            vlc_object_release( p_intf->p_sys->p_input ); 
    979979        } 
    980980 
     
    10231023    } 
    10241024 
    1025     if( p_input && !p_input->b_die ) 
     1025    if( p_intf->p_sys->p_input && !p_intf->p_sys->p_input->b_die ) 
    10261026    { 
    10271027        vlc_value_t val; 
  • modules/gui/macosx/playlist.m

    red0b72e rccf834a  
    742742                o_real_filename = o_filename; 
    743743            } 
    744             playlist_Export( p_playlist, [o_real_filename fileSystemRepresentation], "export-xspf" ); 
     744            playlist_Export( p_playlist,  
     745                [o_real_filename fileSystemRepresentation],  
     746                p_playlist->p_local_category, "export-xspf" ); 
    745747        } 
    746748        else 
     
    760762                o_real_filename = o_filename; 
    761763            } 
    762             playlist_Export( p_playlist, [o_real_filename fileSystemRepresentation], p_playlist->p_local_category, "export-m3u" ); 
     764            playlist_Export( p_playlist,  
     765                [o_real_filename fileSystemRepresentation], 
     766                p_playlist->p_local_category, "export-m3u" ); 
    763767        } 
    764768    }