Changeset 3259


Ignore:
Timestamp:
03/12/09 02:11:01 (3 years ago)
Author:
jquelin
Message:

product_path() not needed anymore

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/Config.pm

    r3258 r3259  
    5757    }; 
    5858 
    59 sub product_path { 
    60     if ( defined $ENV{PADRE_HOME} ) { 
    61         # When explicitly set, always use the Unix style 
    62         return qw{ .padre }; 
    63     } elsif ( File::Spec->isa('File::Spec::Win32') ) { 
    64         # On Windows use the traditional Vendor/Product format 
    65         return qw{ Perl Padre }; 
    66     } else { 
    67         # Use the the Unix style elsewhere. 
    68         # TODO - We may want to do something special on Mac 
    69         return qw{ .padre }; 
    70     } 
    71 } 
    7259 
    7360# Establish Padre's home directory 
Note: See TracChangeset for help on using the changeset viewer.