mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01:00
3628b0b499
Add <override> tag, more tests, and actually output the results of these new tags to the gschemas.compiled file.
16 lines
301 B
XML
16 lines
301 B
XML
<schemalist>
|
|
<schema id='base'>
|
|
<key name='foo' type='s'>
|
|
<default>'bar'</default>
|
|
</key>
|
|
</schema>
|
|
|
|
<schema id='sub' extends='base'>
|
|
<override name='foo'>'baz'</override>
|
|
</schema>
|
|
|
|
<schema id='sub2' extends='sub'>
|
|
<key name='foo' type='s'/>
|
|
</schema>
|
|
</schemalist>
|