summaryrefslogtreecommitdiffstats
path: root/src/kernel/qpixmap_x11.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/qpixmap_x11.cpp')
-rw-r--r--src/kernel/qpixmap_x11.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/qpixmap_x11.cpp b/src/kernel/qpixmap_x11.cpp
index 06fcaabfb..cc9c211c4 100644
--- a/src/kernel/qpixmap_x11.cpp
+++ b/src/kernel/qpixmap_x11.cpp
@@ -1877,11 +1877,11 @@ bool TQPixmap::convertFromImage( const TQImage &img, int conversion_flags )
if( axi->bytes_per_line == (int)w ) {
int max = w * h;
while (max--)
- *aptr++ = *iptr++ >> 24; // stquirt
+ *aptr++ = *iptr++ >> 24; // squirt
} else {
for (uint i = 0; i < h; ++i ) {
for (uint j = 0; j < w; ++j )
- *aptr++ = *iptr++ >> 24; // stquirt
+ *aptr++ = *iptr++ >> 24; // squirt
aptr += ( axi->bytes_per_line - w );
}
}