summaryrefslogtreecommitdiff
path: root/docs/guide/gtk_template.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/guide/gtk_template.rst')
-rw-r--r--docs/guide/gtk_template.rst21
1 files changed, 0 insertions, 21 deletions
diff --git a/docs/guide/gtk_template.rst b/docs/guide/gtk_template.rst
index 3e340600..2ba8324c 100644
--- a/docs/guide/gtk_template.rst
+++ b/docs/guide/gtk_template.rst
@@ -69,27 +69,6 @@ Python attribute names that are different to the XML values:
pass
-To add widgets to the built-in child of a parent, describe the built-in widget
-in the XML with its ``child`` element having an ``internal-child`` attribute set
-to the name of the built-in widget:
-
-.. code-block:: XML
-
- <interface>
- <template class="example2" parent="GtkDialog">
- <child internal-child="vbox">
- <object class="GtkBox">
- <child>
- <object class="GtkButton" id="hello_button">
- <property name="label">Hello World</property>
- </object>
- </child>
- </object>
- </child>
- </template>
- </interface>
-
-
Subclasses that declare ``__gtype_name__`` can be used as objects in the XML:
.. code-block:: python