diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-06-14 09:12:44 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-06-14 09:12:44 (GMT) |
commit | 868f0c7155f17b037d96ad3f204686b2650a2365 (patch) | |
tree | 6a3b83430959b6e991a9857d8ad4e6fe03c77d08 /Mac | |
parent | fb79ffae4db119a7e027085b3693be3d2764f845 (diff) | |
download | cpython-868f0c7155f17b037d96ad3f204686b2650a2365.zip cpython-868f0c7155f17b037d96ad3f204686b2650a2365.tar.gz cpython-868f0c7155f17b037d96ad3f204686b2650a2365.tar.bz2 |
Oops, default type and creator were reversed.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Python/gusiconfig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Python/gusiconfig.cpp b/Mac/Python/gusiconfig.cpp index dc33134..db46619 100644 --- a/Mac/Python/gusiconfig.cpp +++ b/Mac/Python/gusiconfig.cpp @@ -119,7 +119,7 @@ extern "C" void GUSISetupConfig() if ( prefrh != -1) CloseResFile(prefrh); UseResFile(oldrh); - config->ConfigureDefaultTypeCreator('ttxt', 'TEXT'); + config->ConfigureDefaultTypeCreator('TEXT', 'ttxt'); config->ConfigureSuffices( sizeof(sSuffices)/sizeof(GUSIConfiguration::FileSuffix)-1, sSuffices); config->ConfigureAutoInitGraf(false); |