diff options
author | Umang Jain <email@uajain.com> | 2020-07-27 07:07:09 +0000 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-07-27 22:30:07 +0300 |
commit | e349cb0f8a89057b08c7f080d89011b42d3f88e6 (patch) | |
tree | 933f9aa61f4ab8a2275a4c5d9045e20d4320e1ca /src | |
parent | 565f95d64ff92e8712e8090988180c343dd3bcb5 (diff) |
libcamera: event_notifier: Fix signature typo setEnabled() in documentation
Signed-off-by: Umang Jain <email@uajain.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/libcamera/event_notifier.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libcamera/event_notifier.cpp b/src/libcamera/event_notifier.cpp index cc3ea0d9..21c07faf 100644 --- a/src/libcamera/event_notifier.cpp +++ b/src/libcamera/event_notifier.cpp @@ -35,9 +35,9 @@ namespace libcamera { * multiple event types on the same file descriptor multiple notifiers must be * created. * - * The notifier can be disabled with the setEnable() function. When the notifier + * The notifier can be disabled with the setEnabled() function. When the notifier * is disabled it ignores events and does not emit the \ref activated signal. - * The notifier can then be re-enabled with the setEnable() function. + * The notifier can then be re-enabled with the setEnabled() function. * * Creating multiple notifiers of the same type for the same file descriptor is * not allowed and results in undefined behaviour. @@ -90,7 +90,7 @@ EventNotifier::~EventNotifier() * \fn EventNotifier::enabled() * \brief Retrieve the notifier state * \return True if the notifier is enabled, or false otherwise - * \sa setEnable() + * \sa setEnabled() */ /** |