Changeset 10596

Show
Ignore:
Timestamp:
02/07/10 07:47:18 (7 months ago)
Author:
azawawi
Message:

No need to launch a command line to execute explorer.exe on win32

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/Wx/Directory/OpenInFileBrowserAction.pm

    r10436 r10596  
    6969                # In windows, simply execute: explorer.exe /select,"$filename" 
    7070                $filename =~ s/\//\\/g; 
    71                 $error = $self->_execute( 'cmd', '/c', 'explorer.exe', "/select,\"$filename\"" ); 
     71                $error = $self->_execute( 'explorer.exe', "/select,\"$filename\"" ); 
    7272        } elsif (Padre::Constant::UNIX) { 
    7373                my $parent_folder = File::Basename::dirname($filename);