diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-26 22:10:53 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-26 22:10:53 +0000 |
commit | f044e090c4c8aeed0480fc56fec01e651d811680 (patch) | |
tree | b7e6e67606bd3aba3115bea2955f21ed61402618 /Mac/OSX/PythonLauncher/FileSettings.h | |
parent | 9431e48d238a77422436a6b3e56a4237e87d71ea (diff) | |
download | cpython-git-f044e090c4c8aeed0480fc56fec01e651d811680.tar.gz |
Changed the input field for the interpreter to use (in the preferences
window) to a combobox listing the known interpreters.
Diffstat (limited to 'Mac/OSX/PythonLauncher/FileSettings.h')
-rwxr-xr-x | Mac/OSX/PythonLauncher/FileSettings.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Mac/OSX/PythonLauncher/FileSettings.h b/Mac/OSX/PythonLauncher/FileSettings.h index ea69b58bb1..80c11f1e52 100755 --- a/Mac/OSX/PythonLauncher/FileSettings.h +++ b/Mac/OSX/PythonLauncher/FileSettings.h @@ -23,6 +23,7 @@ @interface FileSettings : NSObject <FileSettingsSource> { NSString *interpreter; // The pathname of the interpreter to use + NSArray *interpreters; // List of known interpreters BOOL debug; // -d option: debug parser BOOL verbose; // -v option: verbose import BOOL inspect; // -i option: interactive mode after script @@ -54,5 +55,6 @@ //- (void)applyUserDefaults: (NSString *)filetype; - (void)applyValuesFromDict: (NSDictionary *)dict; - (void)reset; +- (NSArray *) interpreters; @end |