GSettings: Fix comment formatting, whitespace.

This commit is contained in:
Ryan Lortie 2010-06-17 08:06:52 -04:00
parent 24f1fa12c1
commit d405ad8a09

View File

@ -152,7 +152,7 @@
* <programlisting><![CDATA[ * <programlisting><![CDATA[
* <schemalist> * <schemalist>
* <schema id="org.gtk.test" path="/tests/" gettext-domain="test"> * <schema id="org.gtk.test" path="/tests/" gettext-domain="test">
* *
* <key name="greeting" type="s"> * <key name="greeting" type="s">
* <default l10n="messages">"Hello, earthlings"</default> * <default l10n="messages">"Hello, earthlings"</default>
* <summary>A greeting</summary> * <summary>A greeting</summary>
@ -160,11 +160,11 @@
* Greeting of the invading martians * Greeting of the invading martians
* </description> * </description>
* </key> * </key>
* *
* <key name="box" type="(ii)"> * <key name="box" type="(ii)">
* <default>(20,30)</default> * <default>(20,30)</default>
* </key> * </key>
* *
* </schema> * </schema>
* </schemalist> * </schemalist>
* ]]></programlisting></example> * ]]></programlisting></example>
@ -172,19 +172,19 @@
* <example><title>Ranges, choices and enumerated types</title> * <example><title>Ranges, choices and enumerated types</title>
* <programlisting><![CDATA[ * <programlisting><![CDATA[
* <schemalist> * <schemalist>
* *
* <enum id="myenum"> * <enum id="myenum">
* <value nick="first" value="1"/> * <value nick="first" value="1"/>
* <value nick="second" value="2"/> * <value nick="second" value="2"/>
* </enum> * </enum>
* *
* <schema id="org.gtk.test"> * <schema id="org.gtk.test">
* *
* <key name="key-with-range" type="i"> * <key name="key-with-range" type="i">
* <range min="1" max="100"/> * <range min="1" max="100"/>
* <default>10</default> * <default>10</default>
* </key> * </key>
* *
* <key name="key-with-choices" type="s"> * <key name="key-with-choices" type="s">
* <choices> * <choices>
* <choice value='Elisabeth'/> * <choice value='Elisabeth'/>
@ -197,11 +197,11 @@
* </aliases> * </aliases>
* <default>'Joe'</default> * <default>'Joe'</default>
* </key> * </key>
* *
* <key name="enumerated-key" enum="myenum"> * <key name="enumerated-key" enum="myenum">
* <default>'first'</default> * <default>'first'</default>
* </key> * </key>
* *
* </schema> * </schema>
* </schemalist> * </schemalist>
* ]]></programlisting></example> * ]]></programlisting></example>
@ -225,7 +225,7 @@
* #G_SETTINGS_BIND_NO_SENSITIVITY flag. * #G_SETTINGS_BIND_NO_SENSITIVITY flag.
* </para> * </para>
* </refsect2> * </refsect2>
*/ **/
struct _GSettingsPrivate struct _GSettingsPrivate
{ {