summaryrefslogtreecommitdiff
path: root/Source/WebCore/rendering/VerticalPositionCache.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/rendering/VerticalPositionCache.h')
-rw-r--r--Source/WebCore/rendering/VerticalPositionCache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/rendering/VerticalPositionCache.h b/Source/WebCore/rendering/VerticalPositionCache.h
index bb3987772..b7cd7e085 100644
--- a/Source/WebCore/rendering/VerticalPositionCache.h
+++ b/Source/WebCore/rendering/VerticalPositionCache.h
@@ -48,7 +48,7 @@ public:
const HashMap<RenderObject*, int>::const_iterator it = mapToCheck.find(renderer);
if (it == mapToCheck.end())
return PositionUndefined;
- return it->second;
+ return it->value;
}
void set(RenderObject* renderer, FontBaseline baselineType, int position)