mirror of
https://gitlab.gnome.org/GNOME/libmks.git
synced 2025-04-14 08:27:16 +00:00
build: fix various GObject Introspection notation
This commit is contained in:
parent
629cfd0e28
commit
ed27fc97d8
@ -389,7 +389,7 @@ mks_mouse_move_to_finish (MksMouse *self,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* mks_mouse_move_to:
|
* mks_mouse_move_to_sync:
|
||||||
* @self: an #MksMouse
|
* @self: an #MksMouse
|
||||||
* @x: the x coordinate
|
* @x: the x coordinate
|
||||||
* @y: the y coordinate
|
* @y: the y coordinate
|
||||||
@ -486,7 +486,7 @@ mks_mouse_move_by_finish (MksMouse *self,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* mks_mouse_move_by:
|
* mks_mouse_move_by_sync:
|
||||||
* @self: an #MksMouse
|
* @self: an #MksMouse
|
||||||
* @delta_x: the x coordinate delta
|
* @delta_x: the x coordinate delta
|
||||||
* @delta_y: the y coordinate delta
|
* @delta_y: the y coordinate delta
|
||||||
|
@ -729,6 +729,18 @@ mks_screen_attach_finish (MksScreen *self,
|
|||||||
return g_task_propagate_pointer (G_TASK (result), error);
|
return g_task_propagate_pointer (G_TASK (result), error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* mks_screen_attach_sync:
|
||||||
|
* @self: a #MksScreen
|
||||||
|
* @cancellable: (nullable): a #GCancellable or %NULL
|
||||||
|
* @error: (nullable): a location for a #GError, or %NULL
|
||||||
|
*
|
||||||
|
* Synchronous request to attach to screen, creating a paintable that can
|
||||||
|
* be used to update display as the Qemu instance updates.
|
||||||
|
*
|
||||||
|
* Returns: (transfer full): a #GdkPaintable if successful; otherwise %NULL
|
||||||
|
* and @error is set.
|
||||||
|
*/
|
||||||
GdkPaintable *
|
GdkPaintable *
|
||||||
mks_screen_attach_sync (MksScreen *self,
|
mks_screen_attach_sync (MksScreen *self,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
|
@ -81,7 +81,7 @@ gboolean mks_screen_configure_sync (MksScreen *self,
|
|||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
GError **error);
|
GError **error);
|
||||||
MKS_AVAILABLE_IN_ALL
|
MKS_AVAILABLE_IN_ALL
|
||||||
void mks_screen_attach (MksScreen *screen,
|
void mks_screen_attach (MksScreen *self,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
GAsyncReadyCallback callback,
|
GAsyncReadyCallback callback,
|
||||||
gpointer user_data);
|
gpointer user_data);
|
||||||
@ -90,7 +90,7 @@ GdkPaintable *mks_screen_attach_finish (MksScreen *self,
|
|||||||
GAsyncResult *result,
|
GAsyncResult *result,
|
||||||
GError **error);
|
GError **error);
|
||||||
MKS_AVAILABLE_IN_ALL
|
MKS_AVAILABLE_IN_ALL
|
||||||
GdkPaintable *mks_screen_attach_sync (MksScreen *screen,
|
GdkPaintable *mks_screen_attach_sync (MksScreen *self,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
GError **error);
|
GError **error);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user