- fix mismatched parentheses in one of the ifdefs
* khtml/html/html_headimpl.cpp:
(HTMLTitleElementImpl::childrenChanged):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@9112
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2005-05-04 Vicki Murley <vicki@apple.com>
+
+ Reviewed by Darin.
+
+ - fix mismatched parentheses in one of the ifdefs
+
+ * khtml/html/html_headimpl.cpp:
+ (HTMLTitleElementImpl::childrenChanged):
+
2005-05-04 Darin Adler <darin@apple.com>
Reviewed by Dave Hyatt.
// Only allow title to be set by first <title> encountered.
if (inDocument() && getDocument()->title().isEmpty())
#else
- if (inDocument()))
+ if (inDocument())
#endif
getDocument()->setTitle(m_title);
}