Title: [190482] trunk/Source/WebCore
Revision
190482
Author
[email protected]
Date
2015-10-02 04:07:40 -0700 (Fri, 02 Oct 2015)

Log Message

Attempted build fix.

* DerivedSources.make:
* page/make_settings.pl:
(printGetterAndSetter):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (190481 => 190482)


--- trunk/Source/WebCore/ChangeLog	2015-10-02 10:53:53 UTC (rev 190481)
+++ trunk/Source/WebCore/ChangeLog	2015-10-02 11:07:40 UTC (rev 190482)
@@ -1,3 +1,11 @@
+2015-10-02  Dean Jackson  <[email protected]>
+
+        Attempted build fix.
+
+        * DerivedSources.make:
+        * page/make_settings.pl:
+        (printGetterAndSetter):
+
 2015-10-01  Dean Jackson  <[email protected]>
 
         Expose WEBGL_debug_renderer_info

Modified: trunk/Source/WebCore/DerivedSources.make (190481 => 190482)


--- trunk/Source/WebCore/DerivedSources.make	2015-10-02 10:53:53 UTC (rev 190481)
+++ trunk/Source/WebCore/DerivedSources.make	2015-10-02 11:07:40 UTC (rev 190482)
@@ -1140,6 +1140,8 @@
 
 # --------
 
+# Internal Settings
+
 InternalSettingsGenerated.idl InternalSettingsGenerated.cpp InternalSettingsGenerated.h SettingsMacros.h : MakeSettings.intermediate
 .INTERMEDIATE : MakeSettings.intermediate
 MakeSettings.intermediate : page/make_settings.pl page/Settings.in

Modified: trunk/Source/WebCore/page/make_settings.pl (190481 => 190482)


--- trunk/Source/WebCore/page/make_settings.pl	2015-10-02 10:53:53 UTC (rev 190481)
+++ trunk/Source/WebCore/page/make_settings.pl	2015-10-02 11:07:40 UTC (rev 190482)
@@ -239,12 +239,12 @@
 {
     my ($file, $settingName, $type, $setNeedsStyleRecalcInAllFrames) = @_;
     my $setterFunctionName = setterFunctionName($settingName);
-    
+
     my $webcoreExport = "";
     if ($setNeedsStyleRecalcInAllFrames) {
         $webcoreExport = "WEBCORE_EXPORT"; # Export is only needed if the definition is not in the header.
     }
-    
+
     if (lc(substr($type, 0, 1)) eq substr($type, 0, 1)) {
         print $file "    $type $settingName() const { return m_$settingName; } \\\n";
         print $file "    $webcoreExport void $setterFunctionName($type $settingName)";
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to