summaryrefslogtreecommitdiff
path: root/graphics/goocanvas2/patches/patch-src_goocanvasitem.c
blob: 8a3ad7b0745b89c36e503566907512a62dfe6483 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
$NetBSD: patch-src_goocanvasitem.c,v 1.1 2013/06/09 13:25:14 obache Exp $

* Use GObject.Object instead of GLib.Object in introspection annotations
  https://git.gnome.org/browse/goocanvas/commit/?id=2088843efb50f05b8965340eddbf7c0103c6eef1
* Fix some introspection generation warnings.
  https://git.gnome.org/browse/goocanvas/commit/?id=bfc08d9a34c5d3d598aa025dd514a11226dfe1be

--- src/goocanvasitem.c.orig	2011-10-09 18:03:37.000000000 +0000
+++ src/goocanvasitem.c
@@ -117,7 +117,7 @@ goo_canvas_item_base_init (gpointer g_if
       /* Mouse events. */
 
       /**
-       * GooCanvasItem::enter-notify-event
+       * GooCanvasItem::enter-notify-event:
        * @item: the item that received the signal.
        * @target_item: the target of the event.
        * @event: the event data. The x & y fields contain the mouse position
@@ -142,7 +142,7 @@ goo_canvas_item_base_init (gpointer g_if
 		      GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
 
       /**
-       * GooCanvasItem::leave-notify-event
+       * GooCanvasItem::leave-notify-event:
        * @item: the item that received the signal.
        * @target_item: the target of the event.
        * @event: the event data. The x & y fields contain the mouse position
@@ -167,7 +167,7 @@ goo_canvas_item_base_init (gpointer g_if
 		      GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
 
       /**
-       * GooCanvasItem::motion-notify-event
+       * GooCanvasItem::motion-notify-event:
        * @item: the item that received the signal.
        * @target_item: the target of the event.
        * @event: the event data. The x & y fields contain the mouse position
@@ -192,7 +192,7 @@ goo_canvas_item_base_init (gpointer g_if
 		      GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
 
       /**
-       * GooCanvasItem::button-press-event
+       * GooCanvasItem::button-press-event:
        * @item: the item that received the signal.
        * @target_item: the target of the event.
        * @event: the event data. The x & y fields contain the mouse position
@@ -217,7 +217,7 @@ goo_canvas_item_base_init (gpointer g_if
 		      GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
 
       /**
-       * GooCanvasItem::button-release-event
+       * GooCanvasItem::button-release-event:
        * @item: the item that received the signal.
        * @target_item: the target of the event.
        * @event: the event data. The x & y fields contain the mouse position
@@ -245,7 +245,7 @@ goo_canvas_item_base_init (gpointer g_if
       /* Keyboard events. */
 
       /**
-       * GooCanvasItem::focus-in-event
+       * GooCanvasItem::focus-in-event:
        * @item: the item that received the signal.
        * @target_item: the target of the event.
        * @event: the event data.
@@ -268,7 +268,7 @@ goo_canvas_item_base_init (gpointer g_if
 		      GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
 
       /**
-       * GooCanvasItem::focus-out-event
+       * GooCanvasItem::focus-out-event:
        * @item: the item that received the signal.
        * @target_item: the target of the event.
        * @event: the event data.
@@ -291,7 +291,7 @@ goo_canvas_item_base_init (gpointer g_if
 		      GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
 
       /**
-       * GooCanvasItem::key-press-event
+       * GooCanvasItem::key-press-event:
        * @item: the item that received the signal.
        * @target_item: the target of the event.
        * @event: the event data.
@@ -315,7 +315,7 @@ goo_canvas_item_base_init (gpointer g_if
 		      GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
 
       /**
-       * GooCanvasItem::key-release-event
+       * GooCanvasItem::key-release-event:
        * @item: the item that received the signal.
        * @target_item: the target of the event.
        * @event: the event data.
@@ -371,7 +371,7 @@ goo_canvas_item_base_init (gpointer g_if
 		      GTK_TYPE_TOOLTIP);
 
       /**
-       * GooCanvasItem::grab-broken-event
+       * GooCanvasItem::grab-broken-event:
        * @item: the item that received the signal.
        * @target_item: the target of the event.
        * @event: the event data.
@@ -395,9 +395,9 @@ goo_canvas_item_base_init (gpointer g_if
 		      GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
 
       /**
-       * GooCanvasItem::child-notify
+       * GooCanvasItem::child-notify:
        * @item: the item that received the signal.
-       * @pspec: (type GLib.ParamSpec): the #GParamSpec of the changed child property.
+       * @pspec: (type GObject.ParamSpec): the #GParamSpec of the changed child property.
        *
        * Emitted for each child property that has changed.
        * The signal's detail holds the property name. 
@@ -413,7 +413,7 @@ goo_canvas_item_base_init (gpointer g_if
 		      G_TYPE_PARAM);
 
       /**
-       * GooCanvasItem::animation-finished
+       * GooCanvasItem::animation-finished:
        * @item: the item that received the signal.
        * @stopped: if the animation was explicitly stopped.
        *
@@ -430,7 +430,7 @@ goo_canvas_item_base_init (gpointer g_if
 		      G_TYPE_BOOLEAN);
 
       /**
-       * GooCanvasItem::scroll-event
+       * GooCanvasItem::scroll-event:
        * @item: the item that received the signal.
        * @target_item: the target of the event.
        * @event: the event data. The x & y fields contain the mouse position