diff options
Diffstat (limited to 'koffice-i18n-de')
-rw-r--r-- | koffice-i18n-de/docs/koffice/chalk/developers-plugins.docbook | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/koffice-i18n-de/docs/koffice/chalk/developers-plugins.docbook b/koffice-i18n-de/docs/koffice/chalk/developers-plugins.docbook index 9d8d8066..a3007449 100644 --- a/koffice-i18n-de/docs/koffice/chalk/developers-plugins.docbook +++ b/koffice-i18n-de/docs/koffice/chalk/developers-plugins.docbook @@ -1103,7 +1103,7 @@ void KisToolStar::buttonRelease(KisButtonReleaseEvent *event) 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"); @@ -1160,7 +1160,7 @@ void KisToolStar::buttonRelease(KisButtonReleaseEvent *event) 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); @@ -1284,7 +1284,7 @@ void KisSmearyOp::paintAt(const KisPoint &pos, const KisPaintInformation& splitCoordinate(pt.y(), &y, &yFraction); KisPaintDeviceSP dab = new KisPaintDevice(colorSpace, "smeary dab"); - Q_CHECK_PTR(dab); + TQ_CHECK_PTR(dab); </programlisting> <para @@ -1344,7 +1344,7 @@ void KisSmearyOp::paintAt(const KisPoint &pos, const KisPaintInformation& KisPaintOp * KisSmearyOpFactory::createOp(const KisPaintOpSettings */*settings*/, KisPainter * painter) { KisPaintOp * op = new KisSmearyOp(painter); - Q_CHECK_PTR(op); + TQ_CHECK_PTR(op); return op; } </programlisting> |