diff options
| author | Slávek Banko <slavek.banko@axis.cz> | 2015-03-05 05:03:32 +0100 |
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2015-03-05 05:03:32 +0100 |
| commit | f9f32cc93e35d51abba0fb9f26afc211c60a5ea4 (patch) | |
| tree | df566426539627ac453c084e8dccba09afdb64b8 /chalk/core/kis_boundary.cc | |
| parent | 98a0195cc514bc04129ef9420f1bfbc971770895 (diff) | |
| download | koffice-f9f32cc93e35d51abba0fb9f26afc211c60a5ea4.tar.gz koffice-f9f32cc93e35d51abba0fb9f26afc211c60a5ea4.zip | |
Fix incorrectly renamed strings
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 0c9681c25..a15697a7f 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); |
