summaryrefslogtreecommitdiffstats
path: root/qtjava/designer/juic/java/put.xsl
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-13 11:29:06 +0900
committerMichele Calgaro <[email protected]>2024-01-13 11:45:40 +0900
commitfaf33629bb6562a6f43f930afafe4b22e9cdb60b (patch)
tree8fc6dc6d999a3a039ace28db2fe5b96712fa18e0 /qtjava/designer/juic/java/put.xsl
parent0ff7d227c65fecb4fb7482ecd679acb594ef5cf7 (diff)
downloadtdebindings-faf33629bb6562a6f43f930afafe4b22e9cdb60b.tar.gz
tdebindings-faf33629bb6562a6f43f930afafe4b22e9cdb60b.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'qtjava/designer/juic/java/put.xsl')
-rw-r--r--qtjava/designer/juic/java/put.xsl6
1 files changed, 3 insertions, 3 deletions
diff --git a/qtjava/designer/juic/java/put.xsl b/qtjava/designer/juic/java/put.xsl
index 884321dc..1bb36ddb 100644
--- a/qtjava/designer/juic/java/put.xsl
+++ b/qtjava/designer/juic/java/put.xsl
@@ -411,7 +411,7 @@
</xsl:if>
<xsl:message>Generating slot "<xsl:value-of select="$method"/></xsl:message>
/**
- * SLOT <xsl:value-of select="$method"/>
+ * TQ_SLOT <xsl:value-of select="$method"/>
*/
<xsl:choose>
<xsl:when test="$abstract">
@@ -419,7 +419,7 @@
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$method"/> {
- tqWarning("Warning: SLOT \"<xsl:value-of select="$method"/>\" must be overridden");
+ tqWarning("Warning: TQ_SLOT \"<xsl:value-of select="$method"/>\" must be overridden");
<xsl:if test="not($return = 'void')">
<xsl:choose>
<xsl:when test="$return = 'byte' or $return = 'short' or $return = 'int' or $return = 'long'">
@@ -447,7 +447,7 @@
<xsl:template name="putSignal">
<xsl:param name="data"/>
<xsl:variable name="sig" select="java:cpp-to-java-signature(.)"/>
- /** SIGNAL <xsl:value-of select="."/> */
+ /** TQ_SIGNAL <xsl:value-of select="."/> */
</xsl:template>
<!--