Index: src/OFApplication.h ================================================================== --- src/OFApplication.h +++ src/OFApplication.h @@ -236,11 +236,11 @@ * @brief Activates the specified sandbox for the application. * * This is only available if `OF_HAVE_SANDBOX` is defined. * * @warning If you allow `exec()`, but do not call - * @ref activateSandboxForChildProcesses, an `exec()`'d process does + * @ref activateSandboxForChildProcesses:, an `exec()`'d process does * not have its permissions restricted! * * @note Once a sandbox has been activated, you cannot activate a different * sandbox. You can however change the active sandbox and reactivate it. * @@ -293,11 +293,11 @@ * @brief Activates the specified sandbox for the application. * * This is only available if `OF_HAVE_SANDBOX` is defined. * * @warning If you allow `exec()`, but do not call - * @ref activateSandboxForExecdProcesses, an `exec()`'d process does + * @ref activateSandboxForChildProcesses:, an `exec()`'d process does * not have its permissions restricted! * * @note Once a sandbox has been activated, you cannot activate a different * sandbox. You can however change the active sandbox and reactivate it. * Index: src/OFStream.h ================================================================== --- src/OFStream.h +++ src/OFStream.h @@ -281,13 +281,13 @@ * @brief Asynchronously reads *at most* size bytes from the stream into a * buffer. * * On network streams, this might read less than the specified number of bytes. * If you want to read exactly the specified number of bytes, use - * @ref asyncReadIntoBuffer:exactLength:target:selector:context:. Note that a - * read can even return 0 bytes - this does not necessarily mean that the - * stream ended, so you still need to check @ref atEndOfStream. + * @ref asyncReadIntoBuffer:exactLength:. Note that a read can even return 0 + * bytes - this does not necessarily mean that the stream ended, so you still + * need to check @ref atEndOfStream. * * @note The stream must conform to @ref OFReadyForReadingObserving in order * for this to work! * * @param buffer The buffer into which the data is read. @@ -302,13 +302,13 @@ * @brief Asynchronously reads *at most* size bytes from the stream into a * buffer. * * On network streams, this might read less than the specified number of bytes. * If you want to read exactly the specified number of bytes, use - * @ref asyncReadIntoBuffer:exactLength:target:selector:context:. Note that a - * read can even return 0 bytes - this does not necessarily mean that the - * stream ended, so you still need to check @ref atEndOfStream. + * @ref asyncReadIntoBuffer:exactLength:. Note that a read can even return 0 + * bytes - this does not necessarily mean that the stream ended, so you still + * need to check @ref atEndOfStream. * * @note The stream must conform to @ref OFReadyForReadingObserving in order * for this to work! * * @param buffer The buffer into which the data is read. @@ -323,14 +323,14 @@ /*! * @brief Asynchronously reads exactly the specified length bytes from the * stream into a buffer. * - * Unlike @ref asyncReadIntoBuffer:length:target:selector:context:, this method - * does not call the method when less than the specified length has been read - - * instead, it waits until it got exactly the specified length, the stream has - * ended or an exception occurred. + * Unlike @ref asyncReadIntoBuffer:length:, this method does not call the + * method when less than the specified length has been read - instead, it waits + * until it got exactly the specified length, the stream has ended or an + * exception occurred. * * @note The stream must conform to @ref OFReadyForReadingObserving in order * for this to work! * * @param buffer The buffer into which the data is read @@ -342,14 +342,14 @@ /*! * @brief Asynchronously reads exactly the specified length bytes from the * stream into a buffer. * - * Unlike @ref asyncReadIntoBuffer:length:target:selector:context:, this method - * does not call the method when less than the specified length has been read - - * instead, it waits until it got exactly the specified length, the stream has - * ended or an exception occurred. + * Unlike @ref asyncReadIntoBuffer:length:, this method does not call the + * method when less than the specified length has been read - instead, it waits + * until it got exactly the specified length, the stream has ended or an + * exception occurred. * * @note The stream must conform to @ref OFReadyForReadingObserving in order * for this to work! * * @param buffer The buffer into which the data is read Index: src/OFThread.h ================================================================== --- src/OFThread.h +++ src/OFThread.h @@ -51,12 +51,12 @@ * To use it, you should create a new class derived from it and reimplement * main. * * @warning Some operating systems such as AmigaOS need special per-thread * initialization of sockets. If you intend to use sockets in the - * thread, set the @ref usesSockets property to true before starting - * it. + * thread, set the @ref supportsSockets property to true before + * starting it. * * @warning Even though the OFCopying protocol is implemented, it does *not* * return an independent copy of the thread, but instead retains it. * This is so that the thread can be used as a key for a dictionary, * so context can be associated with a thread.