@@ -294,19 +294,19 @@ objc_autoreleasePoolPop(pool); } #endif - (void)setCharacter: (of_unichar_t)character - atIndex: (size_t)index + atIndex: (size_t)idx { void *pool = objc_autoreleasePoolPush(); OFString *string; string = [OFString stringWithCharacters: &character length: 1]; - [self replaceCharactersInRange: of_range(index, 1) + [self replaceCharactersInRange: of_range(idx, 1) withString: string]; objc_autoreleasePoolPop(pool); } @@ -464,13 +464,13 @@ wordMiddleFunction: of_ascii_tolower]; } #endif - (void)insertString: (OFString *)string - atIndex: (size_t)index + atIndex: (size_t)idx { - [self replaceCharactersInRange: of_range(index, 0) + [self replaceCharactersInRange: of_range(idx, 0) withString: string]; } - (void)deleteCharactersInRange: (of_range_t)range {