was accidentally renamed to calcBlominMaxWidth.
* rendering/RenderBlock.cpp:
(WebCore::RenderBlock::calcMinMaxWidth):
(WebCore::RenderBlock::calcBlockMinMaxWidth):
* rendering/RenderBlock.h:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@16297
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-09-11 David Hyatt <hyatt@apple.com>
+
+ Fix an unwitting victim of the kMin->min change. calcBlockMinMaxWidth
+ was accidentally renamed to calcBlominMaxWidth.
+
+ * rendering/RenderBlock.cpp:
+ (WebCore::RenderBlock::calcMinMaxWidth):
+ (WebCore::RenderBlock::calcBlockMinMaxWidth):
+ * rendering/RenderBlock.h:
+
2006-09-10 David Hyatt <hyatt@apple.com>
Rework the printer font stuff a little bit so that the Font API doesn't
if (childrenInline())
calcInlineMinMaxWidth();
else
- calcBlocminMaxWidth();
+ calcBlockMinMaxWidth();
if(m_maxWidth < m_minWidth) m_maxWidth = m_minWidth;
// Use a very large value (in effect infinite).
#define BLOCK_MAX_WIDTH 15000
-void RenderBlock::calcBlocminMaxWidth()
+void RenderBlock::calcBlockMinMaxWidth()
{
bool nowrap = style()->whiteSpace() == NOWRAP;
virtual void calcMinMaxWidth();
void calcInlineMinMaxWidth();
- void calcBlocminMaxWidth();
+ void calcBlockMinMaxWidth();
virtual int getBaselineOfFirstLineBox() const;
virtual int getBaselineOfLastLineBox() const;