OSDN Git Service

remove redundant whitespace in convolute() pixmap filter helper
authorIvailo Monev <xakepa10@laimg.moc>
Wed, 25 Mar 2020 01:24:38 +0000 (01:24 +0000)
committerIvailo Monev <xakepa10@laimg.moc>
Wed, 25 Mar 2020 01:24:38 +0000 (01:24 +0000)
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
src/gui/image/qpixmapfilter.cpp

index 88e224b..949f71f 100644 (file)
@@ -304,7 +304,7 @@ static void convolute(
         int kernelWidth,
         int kernelHeight )
 {
-    const QImage processImage = (srcImage.format() != QImage::Format_ARGB32_Premultiplied ) ?               srcImage.convertToFormat(QImage::Format_ARGB32_Premultiplied) : srcImage;
+    const QImage processImage = (srcImage.format() != QImage::Format_ARGB32_Premultiplied ) ? srcImage.convertToFormat(QImage::Format_ARGB32_Premultiplied) : srcImage;
     // TODO: support also other formats directly without copying
 
     int *fixedKernel = new int[kernelWidth*kernelHeight];