diff options
Diffstat (limited to 'chalk/plugins/tools/tool_crop/kis_tool_crop.cc')
-rw-r--r-- | chalk/plugins/tools/tool_crop/kis_tool_crop.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chalk/plugins/tools/tool_crop/kis_tool_crop.cc b/chalk/plugins/tools/tool_crop/kis_tool_crop.cc index 37107508..ec763b1a 100644 --- a/chalk/plugins/tools/tool_crop/kis_tool_crop.cc +++ b/chalk/plugins/tools/tool_crop/kis_tool_crop.cc @@ -701,7 +701,7 @@ void KisToolCrop::setOptionWidgetRatio(double ratio) TQWidget* KisToolCrop::createOptionWidget(TQWidget* parent) { m_optWidget = new WdgToolCrop(parent); - Q_CHECK_PTR(m_optWidget); + TQ_CHECK_PTR(m_optWidget); connect(m_optWidget->bnCrop, TQT_SIGNAL(clicked()), this, TQT_SLOT(crop())); @@ -731,7 +731,7 @@ void KisToolCrop::setup(KActionCollection *collection) TQT_SLOT(activate()), collection, name()); - Q_CHECK_PTR(m_action); + TQ_CHECK_PTR(m_action); m_action->setToolTip(i18n("Crop an area")); m_action->setExclusiveGroup("tools"); |