@@ -34,11 +34,11 @@ #import "OFProcess.h" #import "OFString.h" #import "OFArray.h" #import "OFDictionary.h" #import "OFData.h" -#import "OFLocalization.h" +#import "OFLocale.h" #import "OFInitializationFailedException.h" #import "OFNotOpenException.h" #import "OFOutOfRangeException.h" #import "OFReadFailedException.h" @@ -143,11 +143,11 @@ if (pipe(_readPipe) != 0 || pipe(_writePipe) != 0) @throw [OFInitializationFailedException exceptionWithClass: [self class]]; - path = [program cStringWithEncoding: [OFLocalization encoding]]; + path = [program cStringWithEncoding: [OFLocale encoding]]; [self of_getArgv: &argv forProgramName: programName andArguments: arguments]; @try { @@ -343,11 +343,11 @@ of_string_encoding_t encoding; *argv = [self allocMemoryWithSize: sizeof(char *) count: count + 2]; - encoding = [OFLocalization encoding]; + encoding = [OFLocale encoding]; (*argv)[0] = (char *)[programName cStringWithEncoding: encoding]; for (i = 0; i < count; i++) (*argv)[i + 1] = @@ -364,11 +364,11 @@ of_string_encoding_t encoding; if (environment == nil) return NULL; - encoding = [OFLocalization encoding]; + encoding = [OFLocale encoding]; count = [environment count]; envp = [self allocMemoryWithSize: sizeof(char *) count: count + 1];