SVN_SILENT: debug--

svn path=/trunk/KDE/kdebase/workspace/; revision=726719
This commit is contained in:
Matthew Woehlke 2007-10-18 18:12:08 +00:00
parent 3aa0759a24
commit c8c7e6e04b

View file

@ -210,7 +210,6 @@ KCommonDecorationButton *OxygenClient::createButton(::ButtonType type)
QColor reduceContrast(const QColor &c0, const QColor &c1, double t)
{
double s = KColorUtils::contrastRatio(c0, c1);
printf("initial = %.2f, target = %.2f", s, t);
if (s < t)
return c1;
@ -228,7 +227,6 @@ QColor reduceContrast(const QColor &c0, const QColor &c1, double t)
else
l = a;
}
printf(" --> a = %.3f\n", a);
return r;
}