+2007-06-21 Lars Knoll <lars@trolltech.com>
+
+ Remove some debug output.
+
+ * platform/qt/FontQt.cpp:
+ (WebCore::generateComponents):
+ (WebCore::Font::width):
+
2007-06-21 George Staikos <staikos@kde.org>
Repair Qt/Mac OS X build.
if (i - start > 0) {
components->append(TextRunComponent(run.characters() + start, i - start, f, offset, f == &font.scFont()));
offset += components->last().width + letterSpacing;
- qDebug() << " appending(2) " << components->last().string << components->last().width;
+// qDebug() << " appending(2) " << components->last().string << components->last().width;
}
if (smallCaps)
f = (QChar::category(ch) == QChar::Letter_Lowercase ? &font.scFont() : &font.font());
Vector<TextRunComponent, 1024> components;
int w = generateComponents(&components, *this, run, style);
- qDebug() << " width=" << w;
+// qDebug() << " width=" << w;
return w;
}