summaryrefslogtreecommitdiffstats
path: root/doc/chalk/developers-plugins.docbook
diff options
context:
space:
mode:
Diffstat (limited to 'doc/chalk/developers-plugins.docbook')
-rw-r--r--doc/chalk/developers-plugins.docbook8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/chalk/developers-plugins.docbook b/doc/chalk/developers-plugins.docbook
index 81a4ef49..12acff58 100644
--- a/doc/chalk/developers-plugins.docbook
+++ b/doc/chalk/developers-plugins.docbook
@@ -1075,7 +1075,7 @@ void KisToolStar::setup(KActionCollection *collection)
SLOT(activate()),
collection,
name());
- Q_CHECK_PTR(m_action);
+ TQ_CHECK_PTR(m_action);
m_action->setToolTip(i18n("Draw a star"));
m_action->setExclusiveGroup("tools");
@@ -1136,7 +1136,7 @@ QWidget* KisToolStar::createOptionWidget(QWidget* parent)
QWidget *widget = KisToolShape::createOptionWidget(parent);
m_optWidget = new WdgToolStar(widget);
- Q_CHECK_PTR(m_optWidget);
+ TQ_CHECK_PTR(m_optWidget);
m_optWidget->ratioSpinBox->setValue(m_innerOuterRatio);
@@ -1279,7 +1279,7 @@ cursor.
splitCoordinate(pt.y(), &y, &yFraction);
KisPaintDeviceSP dab = new KisPaintDevice(colorSpace, "smeary dab");
- Q_CHECK_PTR(dab);
+ TQ_CHECK_PTR(dab);
</programlisting>
<para>
@@ -1348,7 +1348,7 @@ that we’ve dirtied a small rectangle of the paint device.
KisPaintOp * KisSmearyOpFactory::createOp(const KisPaintOpSettings */*settings*/, KisPainter * painter)
{
KisPaintOp * op = new KisSmearyOp(painter);
- Q_CHECK_PTR(op);
+ TQ_CHECK_PTR(op);
return op;
}
</programlisting>