|
|
|
@ -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&
|
|
|
|
|
splitCoordinate(pt.y(), &y, &fraccaoY);
|
|
|
|
|
|
|
|
|
|
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 &pos, const KisPaintInformation&
|
|
|
|
|
KisPaintOp * KisSmearyOpFactory::createOp(const KisPaintOpSettings */*configuracao*/, KisPainter * pintor)
|
|
|
|
|
{
|
|
|
|
|
KisPaintOp * op = new KisSmearyOp(pintor);
|
|
|
|
|
Q_CHECK_PTR(op);
|
|
|
|
|
TQ_CHECK_PTR(op);
|
|
|
|
|
return op;
|
|
|
|
|
}
|
|
|
|
|
</programlisting>
|
|
|
|
|