]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/applescript.m
Removes trailing spaces. Removes tabs.
[vlc] / modules / gui / macosx / applescript.m
index adf31885bcdb8692dc0a9d00f09ba80b946773b9..b278c946036be78e114f380bf08925aaf5d233d7 100644 (file)
@@ -10,7 +10,7 @@
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
@@ -30,7 +30,7 @@
 #include "open.h"
 
 /*****************************************************************************
- * VLGetURLScriptCommand implementation 
+ * VLGetURLScriptCommand implementation
  *****************************************************************************/
 @implementation VLGetURLScriptCommand
 
@@ -58,7 +58,7 @@
                                     [[[NSFileManager defaultManager]
                                     displayNameAtPath: o_urlString] UTF8String] );
             playlist_AddInput( p_playlist, p_input, PLAYLIST_INSERT,
-                               PLAYLIST_END, VLC_TRUE );
+                               PLAYLIST_END, VLC_TRUE, VLC_FALSE );
 
 
             o_url = [NSURL fileURLWithPath: o_urlString];
@@ -77,7 +77,7 @@
 
 
 /*****************************************************************************
- * VLControlScriptCommand implementation 
+ * VLControlScriptCommand implementation
  *****************************************************************************/
 /*
  * This entire control command needs a better design. more object oriented.
@@ -95,9 +95,9 @@
     {
         return nil;
     }
-    
     VLCControls * o_controls = (VLCControls *)[[NSApp delegate] getControls];
-    
     if ( o_controls )
     {
         if ( [o_command isEqualToString:@"play"] )
  *****************************************************************************/
 @implementation NSApplication(ScriptSupport)
 
-- (BOOL) scriptFullscreenMode {        
+- (BOOL) scriptFullscreenMode {    
     VLCControls * o_controls = (VLCControls *)[[self delegate] getControls];
 
     return [o_controls isFullscreen];
     [o_controls toogleFullscreen: self];
 }
 
-@end
\ No newline at end of file
+@end