Bug 863264 - delete pointless initialization of mBoundingBox in gfxFont::RunMetrics constructor; r=BenWa

This commit is contained in:
Nathan Froyd 2013-04-29 15:52:27 -04:00
parent cce227c87c
commit 8eeb78adb2

View File

@ -1383,7 +1383,6 @@ public:
struct THEBES_API RunMetrics {
RunMetrics() {
mAdvanceWidth = mAscent = mDescent = 0.0;
mBoundingBox = gfxRect(0,0,0,0);
}
void CombineWith(const RunMetrics& aOther, bool aOtherIsOnLeft);