diff options
author | Tobias Markmann <tm@ayena.de> | 2016-07-27 14:56:23 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2016-07-27 14:56:23 (GMT) |
commit | a495abf8ea86c57fc3e1c1c1450c76936fff8404 (patch) | |
tree | 8272ce25c8bd74298f2935139de4c088b83af20a /Swiften/EventLoop | |
parent | 4cd5e0ed1f7f7eb5783b301117e8475a88e6a60a (diff) | |
download | swift-a495abf8ea86c57fc3e1c1c1450c76936fff8404.zip swift-a495abf8ea86c57fc3e1c1c1450c76936fff8404.tar.bz2 |
Fix Doxygen warnings
This fixes Doxygen warnings about missing parameter
documentation or documentation of non-existing parameters.
Test-Information:
Ran ./scons doc=1 without warnings with Doxygen 1.8.11.
Change-Id: I360d042e5c80f418e7574a26fa1283a82fc504d4
Diffstat (limited to 'Swiften/EventLoop')
-rw-r--r-- | Swiften/EventLoop/EventLoop.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/EventLoop/EventLoop.h b/Swiften/EventLoop/EventLoop.h index 282de15..06b9fbb 100644 --- a/Swiften/EventLoop/EventLoop.h +++ b/Swiften/EventLoop/EventLoop.h @@ -30,13 +30,13 @@ namespace Swift { /** * The \ref postEvent method allows events to be added to the event queue of the \ref EventLoop. - * An optional \ref EventOwner can be passed, allowing later removal of events that have not yet been + * An optional \ref EventOwner can be passed as \p owner, allowing later removal of events that have not yet been * executed using the \ref removeEventsFromOwner method. */ void postEvent(boost::function<void ()> event, std::shared_ptr<EventOwner> owner = std::shared_ptr<EventOwner>()); /** - * The \ref removeEventsFromOwner method removes all events from the specified \ref owner from the + * The \ref removeEventsFromOwner method removes all events from the specified \p owner from the * event queue. */ void removeEventsFromOwner(std::shared_ptr<EventOwner> owner); |