Show
Ignore:
Timestamp:
07/05/08 02:48:23 (2 months ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1215218903 +0200
git-parent:

[a8fe5f4ab123b90a557d5d7a4172d19325929367]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1215218903 +0200
Message:

macosx: Don't forget to unregister callbacks.

Files:

Legend:

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

    r68649ad rd4d9a56  
    12571257    [o_pool release]; 
    12581258 
     1259    var_DelCallback( p_playlist, "playlist-current", PlaylistChanged, self ); 
     1260    var_DelCallback( p_playlist, "intf-change", PlaylistChanged, self ); 
     1261    var_DelCallback( p_playlist, "item-change", PlaylistChanged, self ); 
     1262    var_DelCallback( p_playlist, "item-append", PlaylistChanged, self ); 
     1263    var_DelCallback( p_playlist, "item-deleted", PlaylistChanged, self ); 
     1264 
    12591265    pthread_testcancel(); /* If we were cancelled stop here */ 
    12601266