From patchwork Mon Jul 27 07:07:09 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 9013 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 20A87BD86F for ; Mon, 27 Jul 2020 07:07:14 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 9AD9061223; Mon, 27 Jul 2020 09:07:13 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=uajain.com header.i=@uajain.com header.b="tZg1un5F"; dkim-atps=neutral Received: from o1.f.az.sendgrid.net (o1.f.az.sendgrid.net [208.117.55.132]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id C46A560939 for ; Mon, 27 Jul 2020 09:07:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=uajain.com; h=from:subject:mime-version:to:cc:content-transfer-encoding: content-type; s=s1; bh=Jw1PX1N1FMmmJJwICegX4vIs6r1wobXBFx5w5JJ47Fc=; b=tZg1un5F2u37grgGMnTnvIrAAq5C9d6PPkv7JTml80ROAryUXQhRSr7UU530yZPoHHkL MHDLHjTjcTL09Fnby6OP2NAj2kTHBsMU4FYjPW2IddjGnT2gbmHppzS6oaIyqxM1gUoolg /8bdf2b78AsfH4CCKLx9SN+9SEsoM7Jhc= Received: by filterdrecv-p3las1-7754f7d4cc-rtwc5 with SMTP id filterdrecv-p3las1-7754f7d4cc-rtwc5-20-5F1E7D1D-25 2020-07-27 07:07:09.434731583 +0000 UTC m=+2724816.676095924 Received: from mail.uajain.com (unknown) by ismtpd0007p1hnd1.sendgrid.net (SG) with ESMTP id 8yRmGpQ2SkugeUoObiPIHQ for ; Mon, 27 Jul 2020 07:07:08.987 +0000 (UTC) From: Umang Jain Date: Mon, 27 Jul 2020 07:07:09 +0000 (UTC) Message-Id: <20200727070653.728004-1-email@uajain.com> Mime-Version: 1.0 X-SG-EID: 1Q40EQ7YGir8a9gjSIAdTjhngY657NMk9ckeo4dbHZDiOpywc/L3L9rFqlwE4KPcZj5z9XHfwy1Ge6f/0y1LY3sCbj1EuwFNZOkL0Q/VRJuP8bavBUVqUxs2jIFFw/Jhf+9SvCRlGcG9OK7c2XspcW0RY35wShwpwVcJg2M1txraWRzCuyLGJgOZrCEGvw+iatwb0sQvWAL5Fuv42rStQPq30tsDP5mesx+kzzgJVKe7n6kQpnNShwcnW8ErK3J+JTTMx82zh/U/gZOsaegRGQ== To: libcamera-devel@lists.libcamera.org Subject: [libcamera-devel] [PATCH] libcamera: event_notifier: Fix signature typo setEnabled() in documentation X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Signed-off-by: Umang Jain Reviewed-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- src/libcamera/event_notifier.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libcamera/event_notifier.cpp b/src/libcamera/event_notifier.cpp index cc3ea0d..21c07fa 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() */ /**