Title: [160171] trunk/Source/WebKit/gtk
Revision
160171
Author
[email protected]
Date
2013-12-05 05:28:37 -0800 (Thu, 05 Dec 2013)

Log Message

[GTK] Fix GObject introspection warnings in webkitspellchecker
https://bugs.webkit.org/show_bug.cgi?id=125299

Reviewed by Philippe Normand.

* webkit/webkitspellchecker.cpp: Add missing ':' after some
gobject-introspection annotations.

Modified Paths

Diff

Modified: trunk/Source/WebKit/gtk/ChangeLog (160170 => 160171)


--- trunk/Source/WebKit/gtk/ChangeLog	2013-12-05 12:38:15 UTC (rev 160170)
+++ trunk/Source/WebKit/gtk/ChangeLog	2013-12-05 13:28:37 UTC (rev 160171)
@@ -1,3 +1,13 @@
+2013-12-05  Carlos Garcia Campos  <[email protected]>
+
+        [GTK] Fix GObject introspection warnings in webkitspellchecker
+        https://bugs.webkit.org/show_bug.cgi?id=125299
+
+        Reviewed by Philippe Normand.
+
+        * webkit/webkitspellchecker.cpp: Add missing ':' after some
+        gobject-introspection annotations.
+
 2013-12-03  Joseph Pecoraro  <[email protected]>
 
         Web Inspector: Push Remote Inspector debugging connection management into _javascript_Core

Modified: trunk/Source/WebKit/gtk/webkit/webkitspellchecker.cpp (160170 => 160171)


--- trunk/Source/WebKit/gtk/webkit/webkitspellchecker.cpp	2013-12-05 12:38:15 UTC (rev 160170)
+++ trunk/Source/WebKit/gtk/webkit/webkitspellchecker.cpp	2013-12-05 13:28:37 UTC (rev 160171)
@@ -40,8 +40,8 @@
  * webkit_spell_checker_check_spelling_of_string:
  * @checker: a #WebKitSpellChecker
  * @string: the string to check for misspellings
- * @misspelling_location: (out) (allow-none) a pointer to an integer to store the location of the first misspelling
- * @misspelling_length: (out) (allow-none) a pointer to an integer to store the length of the first misspelling
+ * @misspelling_location: (out) (allow-none): a pointer to an integer to store the location of the first misspelling
+ * @misspelling_length: (out) (allow-none): a pointer to an integer to store the length of the first misspelling
  *
  * Checks @string for misspellings using @checker, storing the
  * location and length of the first misspelling in
@@ -63,7 +63,7 @@
  * webkit_spell_checker_get_guesses_for_word:
  * @checker: a #WebKitSpellChecker
  * @word: the misspelled word
- * @context: (allow-none) the surrounding context of the misspelled word
+ * @context: (allow-none): the surrounding context of the misspelled word
  *
  * Returns a %NULL-terminated array of guesses for corrections of the
  * misspelled word @word.
@@ -89,7 +89,7 @@
 /**
  * webkit_spell_checker_update_spell_checking_languages:
  * @checker: a #WebKitSpellChecker
- * @languages: (allow-none) a string of languages to use for @checker
+ * @languages: (allow-none): a string of languages to use for @checker
  *
  * Sets @languages as the list of languages to use by @checker. The
  * accepted format is a list of comma (',') separated language codes
@@ -113,7 +113,7 @@
  *
  * Returns a suggestion for a word to use in an "autocorrect" feature.
  *
- * Returns: (transfer full) the suggestion for the autocorrection of
+ * Returns: (transfer full): the suggestion for the autocorrection of
  * @word
  *
  * Since: 1.5.1
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to