summaryrefslogtreecommitdiffstats
path: root/chalk/colorspaces/wet/kis_wetop.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/colorspaces/wet/kis_wetop.cc')
-rw-r--r--chalk/colorspaces/wet/kis_wetop.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/chalk/colorspaces/wet/kis_wetop.cc b/chalk/colorspaces/wet/kis_wetop.cc
index 70e072809..55f466faa 100644
--- a/chalk/colorspaces/wet/kis_wetop.cc
+++ b/chalk/colorspaces/wet/kis_wetop.cc
@@ -164,15 +164,15 @@ void KisWetOp::paintAt(const KisPoint &pos, const KisPaintInformation& info)
double eff_height;
double press, contact;
- int tqmaskW = brush->tqmaskWidth(inf);
- int tqmaskH = brush->tqmaskHeight(inf);
+ int maskW = brush->maskWidth(inf);
+ int maskH = brush->maskHeight(inf);
KoPoint dest = (pos - (brush->hotSpot(inf)));
int xStart = (int)dest.x();
int yStart = (int)dest.y();
- for (int y = 0; y < tqmaskH; y++) {
- KisHLineIteratorPixel dabIt = dab->createHLineIterator(0, y, tqmaskW, false);
- KisHLineIteratorPixel it = device->createHLineIterator(xStart, yStart+y, tqmaskW, true);
+ for (int y = 0; y < maskH; y++) {
+ KisHLineIteratorPixel dabIt = dab->createHLineIterator(0, y, maskW, false);
+ KisHLineIteratorPixel it = device->createHLineIterator(xStart, yStart+y, maskW, true);
while (!dabIt.isDone()) {
// This only does something with .paint, and not with adsorb.
@@ -226,5 +226,5 @@ void KisWetOp::paintAt(const KisPoint &pos, const KisPaintInformation& info)
}
}
- m_painter->addDirtyRect(TQRect(xStart, yStart, tqmaskW, tqmaskH));
+ m_painter->addDirtyRect(TQRect(xStart, yStart, maskW, maskH));
}