summaryrefslogtreecommitdiffstats
path: root/koffice-i18n-pt_BR/docs/koffice/chalk/developers-plugins.docbook
diff options
context:
space:
mode:
Diffstat (limited to 'koffice-i18n-pt_BR/docs/koffice/chalk/developers-plugins.docbook')
-rw-r--r--koffice-i18n-pt_BR/docs/koffice/chalk/developers-plugins.docbook8
1 files changed, 4 insertions, 4 deletions
diff --git a/koffice-i18n-pt_BR/docs/koffice/chalk/developers-plugins.docbook b/koffice-i18n-pt_BR/docs/koffice/chalk/developers-plugins.docbook
index 0447021a..1f26d57d 100644
--- a/koffice-i18n-pt_BR/docs/koffice/chalk/developers-plugins.docbook
+++ b/koffice-i18n-pt_BR/docs/koffice/chalk/developers-plugins.docbook
@@ -1105,7 +1105,7 @@ void KisFerramentaEstrela::buttonRelease(KisButtonReleaseEvent *evento)
SLOT(activate()),
colleccao,
name());
- Q_CHECK_PTR(m_action);
+ TQ_CHECK_PTR(m_action);
m_action->setToolTip(i18n("Draw a star"));
m_action->setExclusiveGroup("tools");
@@ -1162,7 +1162,7 @@ void KisFerramentaEstrela::buttonRelease(KisButtonReleaseEvent *evento)
QWidget *elemento = KisToolShape::createOptionWidget(mae);
m_optWidget = new WdgFerramentaEstrela(elemento);
- Q_CHECK_PTR(m_optWidget);
+ TQ_CHECK_PTR(m_optWidget);
m_optWidget->ratioSpinBox->setValue(m_innerOuterRatio);
@@ -1286,7 +1286,7 @@ void KisSmearyOp::paintAt(const KisPoint &pos, const KisPaintInformation&amp
splitCoordinate(pt.y(), &y, &fracaoY);
KisPaintDeviceSP dab = new KisPaintDevice(espacoCores, "smeary dab");
- Q_CHECK_PTR(dab);
+ TQ_CHECK_PTR(dab);
</programlisting>
<para
@@ -1346,7 +1346,7 @@ void KisSmearyOp::paintAt(const KisPoint &amp;pos, const KisPaintInformation&amp
KisPaintOp * KisSmearyOpfatory::createOp(const KisPaintOpSettings */*configuracao*/, KisPainter * pintor)
{
KisPaintOp * op = new KisSmearyOp(pintor);
- Q_CHECK_PTR(op);
+ TQ_CHECK_PTR(op);
return op;
}
</programlisting>