Updates for 1.19.2 release

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28540 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2009-08-25 11:13:00 +00:00
parent e7db98165f
commit ae54787ec6
12 changed files with 108 additions and 14 deletions

View file

@ -662,7 +662,7 @@ static void MD5Transform (uint32_t buf[4], uint32_t const in[16])
*/
- (BOOL) uudecodeInto: (NSMutableData*)decoded
name: (NSString**)namePtr
mode: (int*)modePtr
mode: (NSInteger*)modePtr
{
const unsigned char *bytes = (const unsigned char*)[self bytes];
unsigned length = [self length];
@ -810,7 +810,7 @@ static void MD5Transform (uint32_t buf[4], uint32_t const in[16])
*/
- (BOOL) uuencodeInto: (NSMutableData*)encoded
name: (NSString*)name
mode: (int)mode
mode: (NSInteger)mode
{
const unsigned char *bytes = (const unsigned char*)[self bytes];
int length = [self length];

View file

@ -664,7 +664,7 @@ wordData(NSString *word)
* </p>
* <p>If you need to parse faulty documents (eg where a faulty mail client
* has produced an email which does not conform to the MIME standards), you
* should look at the -setBuggyQotes: and -setDefaultCharset: methods, which
* should look at the -setBuggyQuotes: and -setDefaultCharset: methods, which
* are designed to cope with the most common faults.
* </p>
*/