mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-07 01:43:41 +02:00
Docs: Big entity cleanup
Strip lots of entity use from |[ ]| examples (which are now implicit CDATA). Also remove many redundant uses of <!-- -->.
This commit is contained in:
@@ -106,12 +106,13 @@ g_cancellable_class_init (GCancellableClass *klass)
|
||||
*
|
||||
* An example of how to us this:
|
||||
* |[
|
||||
* /<!-- -->* Make sure we don't do any unnecessary work if already cancelled *<!-- -->/
|
||||
* /* Make sure we don't do unnecessary work if already cancelled */
|
||||
* if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
||||
* return;
|
||||
*
|
||||
* /<!-- -->* Set up all the data needed to be able to
|
||||
* * handle cancellation of the operation *<!-- -->/
|
||||
* /* Set up all the data needed to be able to
|
||||
* * handle cancellation of the operation
|
||||
* */
|
||||
* my_data = my_data_new (...);
|
||||
*
|
||||
* id = 0;
|
||||
@@ -120,12 +121,13 @@ g_cancellable_class_init (GCancellableClass *klass)
|
||||
* G_CALLBACK (cancelled_handler)
|
||||
* data, NULL);
|
||||
*
|
||||
* /<!-- -->* cancellable operation here... *<!-- -->/
|
||||
* /* cancellable operation here... */
|
||||
*
|
||||
* g_cancellable_disconnect (cancellable, id);
|
||||
*
|
||||
* /<!-- -->* cancelled_handler is never called after this, it
|
||||
* * is now safe to free the data *<!-- -->/
|
||||
* /* cancelled_handler is never called after this,
|
||||
* * it is now safe to free the data
|
||||
* */
|
||||
* my_data_free (my_data);
|
||||
* ]|
|
||||
*
|
||||
|
Reference in New Issue
Block a user