From c3c5323e6c679ab4ed093a024086b763d25c8d3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kai=20K=C3=B6hne?= Date: Fri, 8 Sep 2023 08:37:27 +0200 Subject: [PATCH] Doc: Add documentation for added QNativeIpcKey overload Document new implicit constructor introduced in the commit 08605f0d78485 Fixes: QTBUG-116870 Change-Id: I518f0a043d7738698ae568ce0b51db3f2c28574f Reviewed-by: Thiago Macieira Reviewed-by: Dennis Oberst (cherry picked from commit ef748095fe587446838428fdc44a9389be81f833) Reviewed-by: Qt Cherry-pick Bot --- src/corelib/ipc/qtipccommon.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/corelib/ipc/qtipccommon.cpp b/src/corelib/ipc/qtipccommon.cpp index a2cc75b4b15..6629b69a831 100644 --- a/src/corelib/ipc/qtipccommon.cpp +++ b/src/corelib/ipc/qtipccommon.cpp @@ -343,6 +343,12 @@ QNativeIpcKey::Type QNativeIpcKey::defaultTypeForOs_internal() noexcept } #endif +/*! + \fn QNativeIpcKey::QNativeIpcKey() noexcept + + Constructs a QNativeIpcKey object of type \l DefaultTypeForOs with an empty key. +*/ + /*! \fn QNativeIpcKey::QNativeIpcKey(Type type) noexcept \fn QNativeIpcKey::QNativeIpcKey(const QString &key, Type type)