summaryrefslogtreecommitdiffstats
path: root/chalk/core/kis_paintop_registry.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/core/kis_paintop_registry.cc')
-rw-r--r--chalk/core/kis_paintop_registry.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chalk/core/kis_paintop_registry.cc b/chalk/core/kis_paintop_registry.cc
index 3651f35d..012f2027 100644
--- a/chalk/core/kis_paintop_registry.cc
+++ b/chalk/core/kis_paintop_registry.cc
@@ -103,11 +103,11 @@ KisPaintOp * KisPaintOpRegistry::paintOp(const TQString & id, const KisPaintOpSe
return paintOp(KisID(id, ""), settings, painter);
}
-KisPaintOpSettings * KisPaintOpRegistry::settings(const KisID& id, TQWidget * tqparent, const KisInputDevice& inputDevice) const
+KisPaintOpSettings * KisPaintOpRegistry::settings(const KisID& id, TQWidget * parent, const KisInputDevice& inputDevice) const
{
KisPaintOpFactory* f = get(id);
if (f)
- return f->settings( tqparent, inputDevice );
+ return f->settings( parent, inputDevice );
return 0;
}