Title: [92463] trunk/Source/WebCore
Revision
92463
Author
[email protected]
Date
2011-08-05 01:21:47 -0700 (Fri, 05 Aug 2011)

Log Message

Unreviewed: change an instance of isImportRule() that was overlooked in commit 92448.

No new tests. (No functional change)

* xml/XSLImportRule.h:
(WebCore::XSLImportRule::isImportRule):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (92462 => 92463)


--- trunk/Source/WebCore/ChangeLog	2011-08-05 08:19:03 UTC (rev 92462)
+++ trunk/Source/WebCore/ChangeLog	2011-08-05 08:21:47 UTC (rev 92463)
@@ -1,3 +1,12 @@
+2011-08-05  Roland Steiner  <[email protected]>
+
+        Unreviewed: change an instance of isImportRule() that was overlooked in commit 92448.
+
+        No new tests. (No functional change)
+
+        * xml/XSLImportRule.h:
+        (WebCore::XSLImportRule::isImportRule):
+
 2011-08-05  Mark Pilgrim  <[email protected]>
 
         Remove LegacyDefaultOptionalArguments flag from remaining SVG IDL files

Modified: trunk/Source/WebCore/xml/XSLImportRule.h (92462 => 92463)


--- trunk/Source/WebCore/xml/XSLImportRule.h	2011-08-05 08:19:03 UTC (rev 92462)
+++ trunk/Source/WebCore/xml/XSLImportRule.h	2011-08-05 08:21:47 UTC (rev 92463)
@@ -55,7 +55,7 @@
 private:
     XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
 
-    virtual bool isImportRule() { return true; }
+    virtual bool isImportRule() const { return true; }
 
     // from CachedResourceClient
     virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to