From kde-commits Tue Aug 14 01:12:27 2007 From: Mosfet Date: Tue, 14 Aug 2007 01:12:27 +0000 To: kde-commits Subject: Re: KDE/kdegraphics/kolourpaint/imagelib/effects Message-Id: <200708132012.27779.daniel.duley () verizon ! net> X-MARC-Message: https://marc.info/?l=kde-commits&m=118705326123577 Yep, sorry about that. I won't be making API changes like that anymore. I was trying to fill a request by Clarence by adding a simpler, faster, method and wanted to make the API match blur. I figured since he's the only one using it so far it would be okay ;-) On Monday 13 August 2007 6:56:11 pm Allen Winter wrote: > SVN commit 699734 by winterz: > > Blitz::sharpen() was renamed, to Blitz::gaussianSharpen() I gather. > CCMAIL: daniel.duley@verizon.net, dang@kde.org > > > M +1 -1 kpEffectBlurSharpen.cpp > > > --- > trunk/KDE/kdegraphics/kolourpaint/imagelib/effects/kpEffectBlurSharpen.cpp > #699733:699734 @@ -147,7 +147,7 @@ > #if DEBUG_KP_EFFECT_BLUR_SHARPEN > QTime timer; timer.start (); > #endif > - qimage = Blitz::sharpen (qimage, radius, sigma); > + qimage = Blitz::gaussianSharpen (qimage, radius, sigma); > #if DEBUG_KP_EFFECT_BLUR_SHARPEN > kDebug () << "\titeration #" + QString::number (i) > << ": " + QString::number (timer.elapsed ()) << "ms" << > endl;