~ubuntu-desktop/gtk/gtk3precise

« back to all changes in this revision

Viewing changes to debian/patches/git_api_documentation_tweaks.patch

  • Committer: Sebastien Bacher
  • Date: 2012-07-03 17:59:47 UTC
  • Revision ID: seb128@ubuntu.com-20120703175947-pgg8jnwqyvohuea5
* debian/patches/git_api_documentation_tweaks.patch:
  - backported some api documentation updates

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
diff --git a/gtk/gtktreemodel.c b/gtk/gtktreemodel.c
 
2
index 4bbd803..a2abead 100644
 
3
--- a/gtk/gtktreemodel.c
 
4
+++ b/gtk/gtktreemodel.c
 
5
@@ -2208,8 +2208,8 @@ gtk_tree_row_reference_unref_path (GtkTreePath  *path,
 
6
  * Creates a row reference based on @path.
 
7
  *
 
8
  * This reference will keep pointing to the node pointed to
 
9
- * by @path, so long as it exists. It listens to all signals
 
10
- * emitted by @model, and updates its path appropriately. If
 
11
+ * by @path, so long as it exists. Any changes that occur on @model are
 
12
+ * propagated, and the path is updated appropriately. If
 
13
  * @path isn't a valid path in @model, then %NULL is returned.
 
14
  *
 
15
  * Return value: a newly allocated #GtkTreeRowReference, or %NULL
 
16
diff --git a/gtk/gtkmessagedialog.c b/gtk/gtkmessagedialog.c
 
17
index a6a4889..c46cda4 100644
 
18
--- a/gtk/gtkmessagedialog.c
 
19
+++ b/gtk/gtkmessagedialog.c
 
20
@@ -50,6 +50,10 @@
 
21
  * convenience widget; you could construct the equivalent of #GtkMessageDialog
 
22
  * from #GtkDialog without too much effort, but #GtkMessageDialog saves typing.
 
23
  *
 
24
+ * One difference from #GtkDialog is that #GtkMessageDialog sets the
 
25
+ * #GtkWindow:skip-taskbar-hint property to %TRUE, so that the dialog is hidden
 
26
+ * from the taskbar by default.
 
27
+ *
 
28
  * The easiest way to do a modal message dialog is to use gtk_dialog_run(), though
 
29
  * you can also pass in the %GTK_DIALOG_MODAL flag, gtk_dialog_run() automatically
 
30
  * makes the dialog modal and waits for the user to respond to it. gtk_dialog_run()
 
31
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c
 
32
index 28bf32b..f5fa92d 100644
 
33
--- a/gtk/gtkentry.c
 
34
+++ b/gtk/gtkentry.c
 
35
@@ -790,8 +790,9 @@ gtk_entry_class_init (GtkEntryClass *class)
 
36
    *
 
37
    * Sets the text area's border between the text and the frame.
 
38
    *
 
39
-   * Deprecated: 3.4: Use the standard border and padding CSS properties;
 
40
-   *   the value of this style property is ignored.
 
41
+   * Deprecated: 3.4: Use the standard border and padding CSS properties
 
42
+   *   (through objects like #GtkStyleContext and #GtkCssProvider); the value
 
43
+   *   of this style property is ignored.
 
44
    */
 
45
   g_object_class_install_property (gobject_class,
 
46
                                    PROP_INNER_BORDER,
 
47
@@ -1379,8 +1380,9 @@ gtk_entry_class_init (GtkEntryClass *class)
 
48
    *
 
49
    * Since: 2.16
 
50
    *
 
51
-   * Deprecated: 3.4: Use the standard margin CSS property;
 
52
-   *   the value of this style property is ignored.
 
53
+   * Deprecated: 3.4: Use the standard margin CSS property (through objects
 
54
+   *   like #GtkStyleContext and #GtkCssProvider); the value of this style
 
55
+   *   property is ignored.
 
56
    */
 
57
   gtk_widget_class_install_style_property (widget_class,
 
58
                                           g_param_spec_boxed ("progress-border",
 
59
@@ -1875,8 +1877,9 @@ gtk_entry_class_init (GtkEntryClass *class)
 
60
    *
 
61
    * Since: 2.10
 
62
    *
 
63
-   * Deprecated: 3.4: Use the standard border and padding CSS properties;
 
64
-   *   the value of this style property is ignored.
 
65
+   * Deprecated: 3.4: Use the standard border and padding CSS properties
 
66
+   *   (through objects like #GtkStyleContext and #GtkCssProvider); the value
 
67
+   *   of this style property is ignored.
 
68
    */
 
69
   gtk_widget_class_install_style_property (widget_class,
 
70
                                           g_param_spec_boxed ("inner-border",
 
71
@@ -7331,8 +7334,9 @@ gtk_entry_get_has_frame (GtkEntry *entry)
 
72
  *
 
73
  * Since: 2.10
 
74
  *
 
75
- * Deprecated: 3.4: Use the standard border and padding CSS properties;
 
76
- *   the value set with this function is ignored by #GtkEntry.
 
77
+ * Deprecated: 3.4: Use the standard border and padding CSS properties (through
 
78
+ *   objects like #GtkStyleContext and #GtkCssProvider); the value set with
 
79
+ *   this function is ignored by #GtkEntry.
 
80
  **/
 
81
 void
 
82
 gtk_entry_set_inner_border (GtkEntry        *entry,
 
83
@@ -7354,8 +7358,9 @@ gtk_entry_set_inner_border (GtkEntry        *entry,
 
84
  *
 
85
  * Since: 2.10
 
86
  *
 
87
- * Deprecated: 3.4: Use the standard border and padding CSS properties;
 
88
- *   the value returned by this function is ignored by #GtkEntry.
 
89
+ * Deprecated: 3.4: Use the standard border and padding CSS properties (through
 
90
+ *   objects like #GtkStyleContext and #GtkCssProvider); the value returned by
 
91
+ *   this function is ignored by #GtkEntry.
 
92
  **/
 
93
 const GtkBorder *
 
94
 gtk_entry_get_inner_border (GtkEntry *entry)