ibuscomponent.h   ibuscomponent.h 
skipping to change at line 105 skipping to change at line 105
gchar *textdomain; gchar *textdomain;
/*< private >*/ /*< private >*/
/* engines */ /* engines */
GList *engines; GList *engines;
/* observed paths */ /* observed paths */
GList *observed_paths; GList *observed_paths;
GPid pid; GPid pid;
guint child_source_id;
/* padding */
gpointer pdummy[5]; // We can add 5 pointers without breaking the ABI.
}; };
struct _IBusComponentClass { struct _IBusComponentClass {
IBusSerializableClass parent; IBusSerializableClass parent;
/* class members */ /* class members */
}; };
GType ibus_component_get_type (void); GType ibus_component_get_type (void);
 End of changes. 1 change blocks. 
0 lines changed or deleted 4 lines changed or added


 ibusproxy.h   ibusproxy.h 
skipping to change at line 169 skipping to change at line 169
* @proxy: An IBusProxy. * @proxy: An IBusProxy.
* @method: The method to be called. * @method: The method to be called.
* @timeout_milliseconds: Time out in milliseconds. * @timeout_milliseconds: Time out in milliseconds.
* @error: Returned error is stored here; NULL to ignore error. * @error: Returned error is stored here; NULL to ignore error.
* @first_arg_type: Type of first argument. * @first_arg_type: Type of first argument.
* @...: Rest of arguments, NULL to mark the end. * @...: Rest of arguments, NULL to mark the end.
* @returns: An IBusMessage that is the reply or NULL with an error code if the function fails. * @returns: An IBusMessage that is the reply or NULL with an error code if the function fails.
* *
* Call a method of the corresponding service and blocks a certain time per iod while waiting for * Call a method of the corresponding service and blocks a certain time per iod while waiting for
* an IBusMessage as reply. * an IBusMessage as reply.
* If the IBusMessagwe is not NULL, it calls ibus_connection_send_with_rep ly_and_block() to do the actual sending. * If the IBusMessage is not NULL, it calls ibus_connection_send_with_repl y_and_block() to do the actual sending.
* *
* @see_also: ibus_connection_send_with_reply_and_block(), * @see_also: ibus_connection_send_with_reply_and_block(),
* @see_also: ibus_proxy_call(), ibus_proxy_send_with_reply(), ibus_proxy_c all_with_reply_and_block(). * @see_also: ibus_proxy_call(), ibus_proxy_send_with_reply(), ibus_proxy_c all_with_reply_and_block().
*/ */
IBusMessage *ibus_proxy_call_with_reply_and_block IBusMessage *ibus_proxy_call_with_reply_and_block
(IBusProxy *proxy, (IBusProxy *proxy,
const gchar *method, const gchar *method,
gint timeout_mi lliseconds, gint timeout_mi lliseconds,
IBusError **error, IBusError **error,
GType first_arg_ type, GType first_arg_ type,
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 ibusversion.h   ibusversion.h 
skipping to change at line 52 skipping to change at line 52
* *
* IBus minor version. * IBus minor version.
*/ */
#define IBUS_MINOR_VERSION (2) #define IBUS_MINOR_VERSION (2)
/** /**
* IBUS_MICRO_VERSION: * IBUS_MICRO_VERSION:
* *
* IBus micro version. * IBus micro version.
*/ */
#define IBUS_MICRO_VERSION (0) #define IBUS_MICRO_VERSION (1)
/** /**
* IBUS_CHECK_VERSION: * IBUS_CHECK_VERSION:
* @major: Major version of ibus. * @major: Major version of ibus.
* @minor: Minor version of ibus. * @minor: Minor version of ibus.
* @micro: Micro version of ibus. * @micro: Micro version of ibus.
* *
* Check whether the current IBus version is equal to or greater than * Check whether the current IBus version is equal to or greater than
* given major.minor.micro. * given major.minor.micro.
*/ */
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/