Index: Doxyfile ================================================================== --- Doxyfile +++ Doxyfile @@ -7,36 +7,36 @@ GENERATE_LATEX = NO HIDE_UNDOC_CLASSES = YES HIDE_UNDOC_MEMBERS = YES TYPEDEF_HIDES_STRUCT = YES PREDEFINED = __OBJC__ \ - _Nonnull \ - _Nullable \ + _Nonnull= \ + _Nullable= \ DOXYGEN \ - OF_BOXABLE \ - OF_CONSUMED \ - OF_DESIGNATED_INITIALIZER \ + OF_BOXABLE= \ + OF_CONSUMED= \ + OF_DESIGNATED_INITIALIZER= \ OF_GENERIC(...)= \ OF_HAVE_BLOCKS \ OF_HAVE_FILES \ OF_HAVE_SANDBOX \ OF_HAVE_SOCKETS \ OF_HAVE_THREADS \ OF_KINDOF(...)= \ - OF_NO_RETURN \ - OF_NO_RETURN_FUNC \ + OF_NO_RETURN= \ + OF_NO_RETURN_FUNC= \ OF_NULLABLE_PROPERTY(...)= \ OF_NULL_RESETTABLE_PROPERTY(...)= \ - OF_REQUIRES_SUPER \ - OF_RETURNS_INNER_POINTER \ - OF_RETURNS_NOT_RETAINED \ - OF_RETURNS_RETAINED \ - OF_ROOT_CLASS \ - OF_SENTINEL \ - OF_WARN_UNUSED_RESULT \ - OF_WEAK_UNAVAILABLE \ + OF_REQUIRES_SUPER= \ + OF_RETURNS_INNER_POINTER= \ + OF_RETURNS_NOT_RETAINED= \ + OF_RETURNS_RETAINED= \ + OF_ROOT_CLASS= \ + OF_SENTINEL= \ + OF_WARN_UNUSED_RESULT= \ + OF_WEAK_UNAVAILABLE= \ SIGHUP \ SIGUSR1 \ SIGUSR2 MACRO_EXPANSION = YES EXPAND_ONLY_PREDEF = YES IGNORE_PREFIX = OF of_ Index: src/OFKernelEventObserver.h ================================================================== --- src/OFKernelEventObserver.h +++ src/OFKernelEventObserver.h @@ -43,12 +43,12 @@ @optional /** * @brief This callback is called when an object did get ready for reading. * * @note If the object is a subclass of @ref OFStream and - * @ref OFStream::tryReadLine or @ref OFStream::tryReadTillDelimiter: has - * been called on the stream, this callback will not be called again + * @ref OFStream::tryReadLine or @ref OFStream::tryReadUntilDelimiter: + * has been called on the stream, this callback will not be called again * until new data has been received, even though there is still data in * the cache. The reason for this is to prevent spinning in a loop when * there is an incomplete string in the cache. Once the string has been * completed, the callback will be called again as long there is data in * the cache.