mirror of
https://gitlab.freedesktop.org/libinput/libei.git
synced 2025-12-28 10:50:07 +01:00
doc: fix some invalid \ref commands
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
c88435e51b
commit
7f6312c043
1 changed files with 5 additions and 5 deletions
10
src/libei.h
10
src/libei.h
|
|
@ -370,12 +370,12 @@ ei_property_set(struct ei *ei, const char *property, const char *value);
|
|||
* - If the property does not yet exist, it is created with the given @ref
|
||||
* ei_property_permission.
|
||||
* - If the property exists and @a value is not NULL and the @ref
|
||||
* EI_PROPERTY_WRITE permission is set on the property, the value is changed
|
||||
* EI_PROPERTY_PERM_WRITE permission is set on the property, the value is changed
|
||||
* to the new value and the property's permissions are updated to the given
|
||||
* permission.
|
||||
* - If the property exists and @a value is NULL and the @ref
|
||||
* EI_PROPERTY_WRITE and @ref EI_PROPERTY_DELETE permission is set on the
|
||||
* property, the property is deleted.
|
||||
* EI_PROPERTY_PERM_WRITE and @ref EI_PROPERTY_PERM_DELETE permission is set
|
||||
* on the property, the property is deleted.
|
||||
*
|
||||
* Note that property permissions only apply to the libei client, they do not
|
||||
* apply to the EIS server which can read, modify and delete any property
|
||||
|
|
@ -396,7 +396,7 @@ ei_property_set_with_permissions(struct ei *ei, const char *property, const char
|
|||
|
||||
/**
|
||||
* Return the permissions mask for the given property. If the property does
|
||||
* not exist or does not have the @ref EI_PROPERTY_READ permission,
|
||||
* not exist or does not have the @ref EI_PROPERTY_PERM_READ permission,
|
||||
* this function returns zero.
|
||||
*/
|
||||
uint32_t
|
||||
|
|
@ -404,7 +404,7 @@ ei_property_get_permissions(struct ei *ei, const char *property);
|
|||
|
||||
/**
|
||||
* Return the value of the given property or NULL if the property is not set
|
||||
* or does not have the @ref EI_PROPERTY_READ permission.
|
||||
* or does not have the @ref EI_PROPERTY_PERM_READ permission.
|
||||
*/
|
||||
const char *
|
||||
ei_property_get(struct ei *ei, const char *property);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue