]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
man: fix references to VTABLE property flags
authorPeter A. Bigot <pab@pabigot.com>
Sat, 22 Jun 2019 17:43:49 +0000 (12:43 -0500)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 22 Jun 2019 19:13:41 +0000 (04:13 +0900)
man/sd_bus_add_object_vtable.xml

index 1c222bc5f413fdb23a8f549135bba63fd1cd75a9..9d7e30a5048457e79b059bc3b0837c6a7a4029df 100644 (file)
         </varlistentry>
 
         <varlistentry>
-          <term><constant>SD_BUS_VTABLE_CONST</constant></term>
-          <term><constant>SD_BUS_VTABLE_EMITS_CHANGE</constant></term>
-          <term><constant>SD_BUS_VTABLE_EMITS_INVALIDATION</constant></term>
+          <term><constant>SD_BUS_VTABLE_PROPERTY_CONST</constant></term>
+          <term><constant>SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE</constant></term>
+          <term><constant>SD_BUS_VTABLE_PROPERTY_EMITS_INVALIDATION</constant></term>
 
           <listitem><para>Those three flags correspond to different values of the
           <constant>org.freedesktop.DBus.Property.EmitsChangedSignal</constant> annotation, which specifies
           whether the <constant>org.freedesktop.DBus.Properties.PropertiesChanged</constant> signal is
-          emitted whenever the property changes. <constant>SD_BUS_VTABLE_CONST</constant> corresponds to
+          emitted whenever the property changes. <constant>SD_BUS_VTABLE_PROPERTY_CONST</constant> corresponds to
           <constant>const</constant> and means that the property never changes during the lifetime of the
           object it belongs to, so no signal needs to be emitted.
-          <constant>SD_BUS_VTABLE_EMITS_CHANGE</constant> corresponds to <constant>true</constant> and means
-          that the signal is emitted. <constant>SD_BUS_VTABLE_EMITS_INVALIDATION</constant> corresponds to
-          <constant>invalides</constant> and means that the signal is emitted, but the value is not included
+          <constant>SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE</constant> corresponds to <constant>true</constant> and means
+          that the signal is emitted. <constant>SD_BUS_VTABLE_PROPERTY_EMITS_INVALIDATION</constant> corresponds to
+          <constant>invalidates</constant> and means that the signal is emitted, but the value is not included
           in the signal.</para>
           </listitem>
         </varlistentry>
 
           <listitem><para>Mark this vtable property entry as requiring explicit request to for the value to
           be shown (generally because the value is large or slow to calculate). This entry cannot be combined
-          with <constant>SD_BUS_VTABLE_EMITS_CHANGE</constant>, and will not be shown in property listings by
+          with <constant>SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE</constant>, and will not be shown in property listings by
           default (e.g. <command>busctl introspect</command>).  This corresponds to the
           <constant>org.freedesktop.systemd1.Explicit</constant> annotation in introspection data.</para>
           </listitem>