]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/controls.m
For consistency, remove references to vlc from libvlc
[vlc] / modules / gui / macosx / controls.m
index 1ac699b5d7243c7bc01634a846b6fd82bea44051..b5cf1dfc3c51a94ae01102c960464abf6e9ccbaf 100644 (file)
@@ -82,7 +82,7 @@
 
     }
     val.i_int = config_GetInt( p_intf, "key-play-pause" );
-    var_Set( p_intf->p_vlc, "key-pressed", val );
+    var_Set( p_intf->p_libvlc, "key-pressed", val );
 }
 
 /* Small helper method */
     vlc_value_t val;
     intf_thread_t * p_intf = VLCIntf;
     val.i_int = config_GetInt( p_intf, "key-stop" );
-    var_Set( p_intf->p_vlc, "key-pressed", val );
+    var_Set( p_intf->p_libvlc, "key-pressed", val );
 }
 
 - (IBAction)faster:(id)sender
     vlc_value_t val;
     intf_thread_t * p_intf = VLCIntf;
     val.i_int = config_GetInt( p_intf, "key-faster" );
-    var_Set( p_intf->p_vlc, "key-pressed", val );
+    var_Set( p_intf->p_libvlc, "key-pressed", val );
 }
 
 - (IBAction)slower:(id)sender
     vlc_value_t val;
     intf_thread_t * p_intf = VLCIntf;
     val.i_int = config_GetInt( p_intf, "key-slower" );
-    var_Set( p_intf->p_vlc, "key-pressed", val );
+    var_Set( p_intf->p_libvlc, "key-pressed", val );
 }
 
 - (IBAction)prev:(id)sender
     vlc_value_t val;
     intf_thread_t * p_intf = VLCIntf;
     val.i_int = config_GetInt( p_intf, "key-prev" );
-    var_Set( p_intf->p_vlc, "key-pressed", val );
+    var_Set( p_intf->p_libvlc, "key-pressed", val );
 }
 
 - (IBAction)next:(id)sender
     vlc_value_t val;
     intf_thread_t * p_intf = VLCIntf;
     val.i_int = config_GetInt( p_intf, "key-next" );
-    var_Set( p_intf->p_vlc, "key-pressed", val );
+    var_Set( p_intf->p_libvlc, "key-pressed", val );
 }
 
 - (IBAction)random:(id)sender
     vlc_value_t val;
     intf_thread_t * p_intf = VLCIntf;
     val.i_int = config_GetInt( p_intf, "key-jump+short" );
-    var_Set( p_intf->p_vlc, "key-pressed", val );
+    var_Set( p_intf->p_libvlc, "key-pressed", val );
 }
 
 - (IBAction)backward:(id)sender
     vlc_value_t val;
     intf_thread_t * p_intf = VLCIntf;
     val.i_int = config_GetInt( p_intf, "key-jump-short" );
-    var_Set( p_intf->p_vlc, "key-pressed", val );
+    var_Set( p_intf->p_libvlc, "key-pressed", val );
 }
 
 
     vlc_value_t val;
     intf_thread_t * p_intf = VLCIntf;
     val.i_int = config_GetInt( p_intf, "key-vol-up" );
-    var_Set( p_intf->p_vlc, "key-pressed", val );
+    var_Set( p_intf->p_libvlc, "key-pressed", val );
     /* Manage volume status */
     [o_main manageVolumeSlider];
 }
     vlc_value_t val;
     intf_thread_t * p_intf = VLCIntf;
     val.i_int = config_GetInt( p_intf, "key-vol-down" );
-    var_Set( p_intf->p_vlc, "key-pressed", val );
+    var_Set( p_intf->p_libvlc, "key-pressed", val );
     /* Manage volume status */
     [o_main manageVolumeSlider];
 }
     vlc_value_t val;
     intf_thread_t * p_intf = VLCIntf;
     val.i_int = config_GetInt( p_intf, "key-vol-mute" );
-    var_Set( p_intf->p_vlc, "key-pressed", val );
+    var_Set( p_intf->p_libvlc, "key-pressed", val );
     /* Manage volume status */
     [o_main manageVolumeSlider];
 }
     intf_thread_t * p_intf = VLCIntf;
     audio_volume_t i_volume = (audio_volume_t)[sender intValue];
     int i_volume_step = 0;
-    i_volume_step = config_GetInt( p_intf->p_vlc, "volume-step" );
+    i_volume_step = config_GetInt( p_intf->p_libvlc, "volume-step" );
     aout_VolumeSet( p_intf, i_volume * i_volume_step );
     /* Manage volume status */
     [o_main manageVolumeSlider];