diff options
Diffstat (limited to 'chalk/core/kis_boundary.cc')
-rw-r--r-- | chalk/core/kis_boundary.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chalk/core/kis_boundary.cc b/chalk/core/kis_boundary.cc index 0c9681c2..a15697a7 100644 --- a/chalk/core/kis_boundary.cc +++ b/chalk/core/kis_boundary.cc @@ -38,7 +38,7 @@ void KisBoundary::generateBoundary(int w, int h) { KisColorSpace* cs = m_device->colorSpace(); - //Qt::Horizontal + // Horizontal for (int currentY = - 1; currentY < h; currentY++) { KisHLineIteratorPixel topIt = m_device->createHLineIterator(0, currentY, w, false); KisHLineIteratorPixel botIt = m_device->createHLineIterator(0, currentY + 1, w, false); @@ -59,7 +59,7 @@ void KisBoundary::generateBoundary(int w, int h) { } } - //Qt::Vertical + // Vertical for (int currentX = - 1; currentX < w; currentX++) { KisVLineIteratorPixel leftIt = m_device->createVLineIterator(currentX, 0, h, false); KisVLineIteratorPixel rightIt = m_device->createVLineIterator(currentX + 1, 0, h, false); |