Changeset 6cf432c2dd4a81a68f2a09b66fb2b321ac90c298

Show
Ignore:
Timestamp:
21/02/08 00:35:12 (10 months ago)
Author:
Damien Fouilleul <damienf@videolan.org>
git-committer:
Damien Fouilleul <damienf@videolan.org> 1203550512 +0000
git-parent:

[954ff1ecfd6f064bfc01323375180f99b99322d2]

git-author:
Damien Fouilleul <damienf@videolan.org> 1203550512 +0000
Message:

MacOSX: fix macosx-embedded -> embedded-video migration

Files:

Legend:

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

    r6368b52 r6cf432c  
    336336        config_PutInt( p_intf, "fetch-meta", [o_intf_meta_ckb state] ); 
    337337        config_PutInt( p_intf, "macosx-fspanel", [o_intf_fspanel_ckb state] ); 
    338         config_PutInt( p_intf, "video-embeded", [o_intf_embedded_ckb state] ); 
     338        config_PutInt( p_intf, "embedded-video", [o_intf_embedded_ckb state] ); 
    339339 
    340340        /* okay, let's save our changes to vlcrc */ 
  • modules/gui/macosx/vout.m

    r6368b52 r6cf432c  
    723723    var_Create( p_vout, "macosx-background", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); 
    724724    var_Create( p_vout, "macosx-black", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); 
    725  
     725    var_Create( p_vout, "embedded-video", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); 
    726726 
    727727    /* We only wait for NSApp to initialise if we're not embedded (as in the 
  • src/libvlc-module.c

    r7fd77d9 r6cf432c  
    14681468    add_bool( "embedded-video", 1, NULL, EMBEDDED_TEXT, EMBEDDED_LONGTEXT, 
    14691469              VLC_TRUE ); 
     1470#ifdef __APPLE__ 
     1471       add_deprecated_alias( "macosx-embedded" ); /*deprecated since 0.9.0 */ 
     1472#endif 
    14701473    add_bool( "drop-late-frames", 1, NULL, DROP_LATE_FRAMES_TEXT, 
    14711474              DROP_LATE_FRAMES_LONGTEXT, VLC_TRUE );