From f47f85bbcb00ab8ee657dc8112291e0571f08dd7 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 21 May 2021 09:28:07 +1000 Subject: [PATCH] doc: fix broken references These pages never existed, let's not try to reference them. --- doc/tutorial6.md | 4 ++-- src/pipewire/filter.h | 2 +- src/pipewire/impl-client.c | 1 - src/pipewire/impl-client.h | 4 ++-- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/doc/tutorial6.md b/doc/tutorial6.md index 127b5e183..6148026e9 100644 --- a/doc/tutorial6.md +++ b/doc/tutorial6.md @@ -1,6 +1,6 @@ # Tutorial - Part 6: Binding objects -[[previous]](tutorial5.md) [[index]](tutorial-index.md) [[next]](tutorial7.md) +[[previous]](tutorial5.md) [[index]](tutorial-index.md) In this tutorial we show how to bind to an object so that we can receive events and call methods on the object. @@ -184,4 +184,4 @@ you created. Otherwise, they will be leaked: } ``` -[[previous]](tutorial5.md) [[index]](tutorial-index.md) [[next]](tutorial7.md) +[[previous]](tutorial5.md) [[index]](tutorial-index.md) diff --git a/src/pipewire/filter.h b/src/pipewire/filter.h index cf7abcc7c..9059e75c3 100644 --- a/src/pipewire/filter.h +++ b/src/pipewire/filter.h @@ -36,7 +36,7 @@ extern "C" { * The filter object provides a convenient way to implement * processing filters. * - * See also \ref page_filters and \ref page_core_api + * See also \ref page_core_api */ struct pw_filter; diff --git a/src/pipewire/impl-client.c b/src/pipewire/impl-client.c index 1af9d8518..576d4ce95 100644 --- a/src/pipewire/impl-client.c +++ b/src/pipewire/impl-client.c @@ -374,7 +374,6 @@ static const struct pw_context_events context_events = { /** Make a new client object * * \param core a \ref pw_context object to register the client with - * \param ucred a ucred structure or NULL when unknown * \param properties optional client properties, ownership is taken * \return a newly allocated client object * diff --git a/src/pipewire/impl-client.h b/src/pipewire/impl-client.h index 02ed3a7c0..d861ccb6e 100644 --- a/src/pipewire/impl-client.h +++ b/src/pipewire/impl-client.h @@ -63,13 +63,13 @@ struct pw_impl_client; * * The client object will have its credentials filled in by the protocol. * This information is used to check if a resource or action is available - * for this client. See also \ref page_access + * for this client. * * \section sec_page_client_types Types * * The client and server maintain a mapping between the client and server * types. All type ids that are in messages exchanged between the client - * and server will automatically be remapped. See also \ref page_types. + * and server will automatically be remapped. * * \section sec_page_client_resources Resources *