Title: [210500] trunk/Source/WebKit2
Revision
210500
Author
tpop...@redhat.com
Date
2017-01-09 03:25:49 -0800 (Mon, 09 Jan 2017)

Log Message

[GTK] Replace WebKitWebSettings with WebKitSettings in documentation
https://bugs.webkit.org/show_bug.cgi?id=166836

Reviewed by Carlos Garcia Campos.

Don't use WebKitWebSettings (it was a WebKit1 thing) in documentation,
but replace it with WebKitSettings.

* UIProcess/API/gtk/WebKitSettings.cpp:
(webkit_settings_class_init):
* UIProcess/API/gtk/WebKitWebView.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (210499 => 210500)


--- trunk/Source/WebKit2/ChangeLog	2017-01-09 11:03:35 UTC (rev 210499)
+++ trunk/Source/WebKit2/ChangeLog	2017-01-09 11:25:49 UTC (rev 210500)
@@ -1,3 +1,17 @@
+2017-01-09  Tomas Popela  <tpop...@redhat.com>
+
+        [GTK] Replace WebKitWebSettings with WebKitSettings in documentation
+        https://bugs.webkit.org/show_bug.cgi?id=166836
+
+        Reviewed by Carlos Garcia Campos.
+
+        Don't use WebKitWebSettings (it was a WebKit1 thing) in documentation,
+        but replace it with WebKitSettings.
+
+        * UIProcess/API/gtk/WebKitSettings.cpp:
+        (webkit_settings_class_init):
+        * UIProcess/API/gtk/WebKitWebView.cpp:
+
 2017-01-06  Darin Adler  <da...@apple.com>
 
         Remove PassRefPtr use from "inspector", "platform/sql", and "platform/text"

Modified: trunk/Source/WebKit2/UIProcess/API/gtk/WebKitSettings.cpp (210499 => 210500)


--- trunk/Source/WebKit2/UIProcess/API/gtk/WebKitSettings.cpp	2017-01-09 11:03:35 UTC (rev 210499)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/WebKitSettings.cpp	2017-01-09 11:25:49 UTC (rev 210500)
@@ -679,7 +679,7 @@
                                                          readWriteConstructParamFlags));
 
     /**
-     * WebKitWebSettings:default-font-family:
+     * WebKitSettings:default-font-family:
      *
      * The font family to use as the default for content that does not specify a font.
      */
@@ -692,7 +692,7 @@
                                                         readWriteConstructParamFlags));
 
     /**
-     * WebKitWebSettings:monospace-font-family:
+     * WebKitSettings:monospace-font-family:
      *
      * The font family used as the default for content using a monospace font.
      *
@@ -706,7 +706,7 @@
                                                         readWriteConstructParamFlags));
 
     /**
-     * WebKitWebSettings:serif-font-family:
+     * WebKitSettings:serif-font-family:
      *
      * The font family used as the default for content using a serif font.
      */
@@ -719,7 +719,7 @@
                                                         readWriteConstructParamFlags));
 
     /**
-     * WebKitWebSettings:sans-serif-font-family:
+     * WebKitSettings:sans-serif-font-family:
      *
      * The font family used as the default for content using a sans-serif font.
      */
@@ -732,7 +732,7 @@
                                                         readWriteConstructParamFlags));
 
     /**
-     * WebKitWebSettings:cursive-font-family:
+     * WebKitSettings:cursive-font-family:
      *
      * The font family used as the default for content using a cursive font.
      */
@@ -745,7 +745,7 @@
                                                         readWriteConstructParamFlags));
 
     /**
-     * WebKitWebSettings:fantasy-font-family:
+     * WebKitSettings:fantasy-font-family:
      *
      * The font family used as the default for content using a fantasy font.
      */
@@ -758,7 +758,7 @@
                                                         readWriteConstructParamFlags));
 
     /**
-     * WebKitWebSettings:pictograph-font-family:
+     * WebKitSettings:pictograph-font-family:
      *
      * The font family used as the default for content using a pictograph font.
      */
@@ -771,7 +771,7 @@
                                                         readWriteConstructParamFlags));
 
     /**
-     * WebKitWebSettings:default-font-size:
+     * WebKitSettings:default-font-size:
      *
      * The default font size in pixels to use for content displayed if
      * no font size is specified.
@@ -785,7 +785,7 @@
                                                       readWriteConstructParamFlags));
 
     /**
-     * WebKitWebSettings:default-monospace-font-size:
+     * WebKitSettings:default-monospace-font-size:
      *
      * The default font size in pixels to use for content displayed in
      * monospace font if no font size is specified.
@@ -799,7 +799,7 @@
                                                       readWriteConstructParamFlags));
 
     /**
-     * WebKitWebSettings:minimum-font-size:
+     * WebKitSettings:minimum-font-size:
      *
      * The minimum font size in points used to display text. This setting
      * controls the absolute smallest size. Values other than 0 can

Modified: trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebView.cpp (210499 => 210500)


--- trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebView.cpp	2017-01-09 11:03:35 UTC (rev 210499)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebView.cpp	2017-01-09 11:25:49 UTC (rev 210500)
@@ -2971,7 +2971,7 @@
  * @user_data: (closure): the data to pass to callback function
  *
  * Asynchronously run @script in the context of the current page in @web_view. If
- * WebKitWebSettings:enable-_javascript_ is FALSE, this method will do nothing.
+ * WebKitSettings:enable-_javascript_ is FALSE, this method will do nothing.
  *
  * When the operation is finished, @callback will be called. You can then call
  * webkit_web_view_run_javascript_finish() to get the result of the operation.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to