Title: [177261] trunk/Source/WebCore
- Revision
- 177261
- Author
- [email protected]
- Date
- 2014-12-14 01:50:48 -0800 (Sun, 14 Dec 2014)
Log Message
Fix build. :-|
* css/CSSFunctionValue.cpp:
(WebCore::CSSFunctionValue::CSSFunctionValue):
* css/CSSFunctionValue.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (177260 => 177261)
--- trunk/Source/WebCore/ChangeLog 2014-12-14 09:34:28 UTC (rev 177260)
+++ trunk/Source/WebCore/ChangeLog 2014-12-14 09:50:48 UTC (rev 177261)
@@ -1,5 +1,13 @@
2014-12-14 Andreas Kling <[email protected]>
+ Fix build. :-|
+
+ * css/CSSFunctionValue.cpp:
+ (WebCore::CSSFunctionValue::CSSFunctionValue):
+ * css/CSSFunctionValue.h:
+
+2014-12-14 Andreas Kling <[email protected]>
+
Minor follow-up tweaks suggested by Darin on bug 139587.
* css/CSSFunctionValue.h:
Modified: trunk/Source/WebCore/css/CSSFunctionValue.cpp (177260 => 177261)
--- trunk/Source/WebCore/css/CSSFunctionValue.cpp 2014-12-14 09:34:28 UTC (rev 177260)
+++ trunk/Source/WebCore/css/CSSFunctionValue.cpp 2014-12-14 09:50:48 UTC (rev 177261)
@@ -40,7 +40,7 @@
m_args = CSSValueList::createFromParserValueList(*function->args);
}
-CSSFunctionValue::CSSFunctionValue(String name, PassRefPtr<CSSValueList> args)
+CSSFunctionValue::CSSFunctionValue(const String& name, PassRefPtr<CSSValueList> args)
: CSSValue(FunctionClass)
, m_name(name)
, m_args(args)
Modified: trunk/Source/WebCore/css/CSSFunctionValue.h (177260 => 177261)
--- trunk/Source/WebCore/css/CSSFunctionValue.h 2014-12-14 09:34:28 UTC (rev 177260)
+++ trunk/Source/WebCore/css/CSSFunctionValue.h 2014-12-14 09:50:48 UTC (rev 177261)
@@ -53,7 +53,7 @@
private:
explicit CSSFunctionValue(CSSParserFunction*);
- CSSFunctionValue(const String& , PassRefPtr<CSSValueList>);
+ CSSFunctionValue(const String&, PassRefPtr<CSSValueList>);
String m_name;
RefPtr<CSSValueList> m_args;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes