Remove the requres-version tag as well

2008-08-19  Johan Dahlin  <johan@gnome.org>

    * gtk/gtk-builder-convert (GtkBuilderConverter._parse): 
    Remove the requres-version tag as well


svn path=/trunk/; revision=21157
This commit is contained in:
Johan Dahlin 2008-08-19 10:02:12 +00:00 committed by Johan Dahlin
parent c86af256a2
commit aad8c0f16e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-08-19 Johan Dahlin <johan@gnome.org>
* gtk/gtk-builder-convert (GtkBuilderConverter._parse):
Remove the requres-version tag as well
2008-08-18 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version

View File

@ -243,7 +243,7 @@ class GtkBuilderConverter(object):
self._dom.removeChild(node)
# Strip unsupported tags
for tag in ['requires']:
for tag in ['requires', 'requires-version']:
for child in self._dom.getElementsByTagName(tag):
child.parentNode.removeChild(child)