diff --git a/kdeui/icons/kiconeffect.cpp b/kdeui/icons/kiconeffect.cpp index 486af76d..55e08424 100644 --- a/kdeui/icons/kiconeffect.cpp +++ b/kdeui/icons/kiconeffect.cpp @@ -622,55 +622,6 @@ void KIconEffect::semiTransparent(QPixmap &pix) pix.setMask(QBitmap::fromImage(img)); } -QImage KIconEffect::doublePixels(const QImage &src) const -{ - int w = src.width(); - int h = src.height(); - - QImage dst( w*2, h*2, src.format() ); - - if (src.depth() == 1) - { - kDebug(265) << "image depth 1 not supported\n"; - return QImage(); - } - - int x, y; - if (src.depth() == 32) - { - QRgb* l1, *l2; - for (y=0; y