From dd8bb3de4f353a81954234999f1fea748aee2ea9 Mon Sep 17 00:00:00 2001 From: Ben Murdoch Date: Wed, 11 Aug 2010 14:44:44 +0100 Subject: Merge WebKit at r65072 : Initial merge by git. Change-Id: Ibcf418498376b2660aacb7f8d46ea7085ef91585 --- WebCore/platform/text/Hyphenation.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'WebCore/platform/text/Hyphenation.cpp') diff --git a/WebCore/platform/text/Hyphenation.cpp b/WebCore/platform/text/Hyphenation.cpp index 8ef5a25..89f6438 100644 --- a/WebCore/platform/text/Hyphenation.cpp +++ b/WebCore/platform/text/Hyphenation.cpp @@ -30,9 +30,14 @@ namespace WebCore { -size_t lastHyphenLocation(const UChar* /* characters */, size_t /* length */, size_t /* beforeIndex */) +bool canHyphenate(const AtomicString& /* localeIdentifier */) { - notImplemented(); + return false; +} + +size_t lastHyphenLocation(const UChar* /* characters */, size_t /* length */, size_t /* beforeIndex */, const AtomicString& /* localeIdentifier */) +{ + ASSERT_NOT_REACHED(); return 0; } -- cgit v1.1