~ubuntu-branches/ubuntu/quantal/libpeas/quantal

« back to all changes in this revision

Viewing changes to libpeas/peas-extension.c

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2011-09-22 08:38:23 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: package-import@ubuntu.com-20110922083823-hm0gu89o2utvrxa9
Tags: 1.1.4-0ubuntu1
* New upstream release:
  - Fix to work with PyGObject 3.
  - Do not expose the peas_extension_set_call* API to GObject-Introspection.
  - Disable log hooks used by PyGObject and Seed.
  - Doc updates.
  - Misc improvement and fixes.
  - Translation updates.
* debian/control.in: Bump pygobject build dep as per configure.ac.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
 * Get the type of the extension interface of the object proxied by @exten.
75
75
 *
76
76
 * Return value: The #GType proxied by @exten.
 
77
 *
 
78
 * Deprecated: 1.2.
77
79
 */
78
80
GType
79
81
peas_extension_get_extension_type (PeasExtension *exten)
89
91
}
90
92
 
91
93
/**
92
 
 * peas_extension_call: (skip)
 
94
 * peas_extension_call:
93
95
 * @exten: A #PeasExtension.
94
96
 * @method_name: the name of the method that should be called.
95
97
 * @...: arguments for the method.
112
114
 *
113
115
 * Return value: %TRUE on successful call.
114
116
 *
115
 
 * Deprecated: 1.2. Use the dynamically implemented interface instead.
 
117
 * Deprecated: 1.2: Use the dynamically implemented interface instead.
116
118
 */
117
119
gboolean
118
120
peas_extension_call (PeasExtension *exten,
133
135
}
134
136
 
135
137
/**
136
 
 * peas_extension_call_valist: (skip)
 
138
 * peas_extension_call_valist:
137
139
 * @exten: A #PeasExtension.
138
140
 * @method_name: the name of the method that should be called.
139
141
 * @args: the arguments for the method.
144
146
 *
145
147
 * Return value: %TRUE on successful call.
146
148
 *
147
 
 * Deprecated: 1.2. Use the dynamically implemented interface instead.
 
149
 * Deprecated: 1.2: Use the dynamically implemented interface instead.
148
150
 */
149
151
gboolean
150
152
peas_extension_call_valist (PeasExtension *exten,
198
200
 *
199
201
 * See peas_extension_call() for more information.
200
202
 *
201
 
 * Return value: (transfer full): %TRUE on successful call.
202
 
 *
203
 
 * Deprecated: 1.2. Use the dynamically implemented interface instead.
204
 
 *
205
 
 * Rename to: peas_extension_call
 
203
 * Return value: %TRUE on successful call.
 
204
 *
 
205
 * Deprecated: 1.2: Use the dynamically implemented interface instead.
206
206
 */
207
207
gboolean
208
208
peas_extension_callv (PeasExtension *exten,