summaryrefslogtreecommitdiffstats
path: root/kdoctools/docbook/xsl/html/autotoc.xsl
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 04:12:51 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 04:12:51 +0000
commit560378aaca1784ba19806a0414a32b20c744de39 (patch)
treece0dfd7c3febf2a1adc7603d1019a8be2083c415 /kdoctools/docbook/xsl/html/autotoc.xsl
parentd4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff)
downloadtdelibs-560378aaca1784ba19806a0414a32b20c744de39.tar.gz
tdelibs-560378aaca1784ba19806a0414a32b20c744de39.zip
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
NOTE: This will not compile with Qt4 (yet), however it does compile with Qt3 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211081 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdoctools/docbook/xsl/html/autotoc.xsl')
-rw-r--r--kdoctools/docbook/xsl/html/autotoc.xsl12
1 files changed, 6 insertions, 6 deletions
diff --git a/kdoctools/docbook/xsl/html/autotoc.xsl b/kdoctools/docbook/xsl/html/autotoc.xsl
index 91aaf8ea5..4532b6c6a 100644
--- a/kdoctools/docbook/xsl/html/autotoc.xsl
+++ b/kdoctools/docbook/xsl/html/autotoc.xsl
@@ -81,39 +81,39 @@
<xsl:param name="toc.params" select="''"/>
<xsl:param name="toc"/>
- <xsl:if test="contains($toc.params, 'toc')">
+ <xsl:if test="tqcontains($toc.params, 'toc')">
<xsl:copy-of select="$toc"/>
</xsl:if>
- <xsl:if test="contains($toc.params, 'figure')">
+ <xsl:if test="tqcontains($toc.params, 'figure')">
<xsl:call-template name="list.of.titles">
<xsl:with-param name="titles" select="'figure'"/>
<xsl:with-param name="nodes" select=".//figure"/>
</xsl:call-template>
</xsl:if>
- <xsl:if test="contains($toc.params, 'table')">
+ <xsl:if test="tqcontains($toc.params, 'table')">
<xsl:call-template name="list.of.titles">
<xsl:with-param name="titles" select="'table'"/>
<xsl:with-param name="nodes" select=".//table"/>
</xsl:call-template>
</xsl:if>
- <xsl:if test="contains($toc.params, 'example')">
+ <xsl:if test="tqcontains($toc.params, 'example')">
<xsl:call-template name="list.of.titles">
<xsl:with-param name="titles" select="'example'"/>
<xsl:with-param name="nodes" select=".//example"/>
</xsl:call-template>
</xsl:if>
- <xsl:if test="contains($toc.params, 'equation')">
+ <xsl:if test="tqcontains($toc.params, 'equation')">
<xsl:call-template name="list.of.titles">
<xsl:with-param name="titles" select="'equation'"/>
<xsl:with-param name="nodes" select=".//equation[title]"/>
</xsl:call-template>
</xsl:if>
- <xsl:if test="contains($toc.params, 'procedure')">
+ <xsl:if test="tqcontains($toc.params, 'procedure')">
<xsl:call-template name="list.of.titles">
<xsl:with-param name="titles" select="'procedure'"/>
<xsl:with-param name="nodes" select=".//procedure[title]"/>