summaryrefslogtreecommitdiff
path: root/gtk/gtkprintoperation.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-01-27 14:55:18 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-01-29 12:45:49 -0500
commit4c8bd8e7cf2a4850ad3aac83c0f3d6eb9c5540bd (patch)
tree6538e74167af906319ea494a08d831881fea5365 /gtk/gtkprintoperation.c
parent768bc44081550be18ee19697ed36b5f92298ef11 (diff)
downloadgtk+-4c8bd8e7cf2a4850ad3aac83c0f3d6eb9c5540bd.tar.gz
docs: Identify examples that are C code
https://bugzilla.gnome.org/show_bug.cgi?id=723119
Diffstat (limited to 'gtk/gtkprintoperation.c')
-rw-r--r--gtk/gtkprintoperation.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkprintoperation.c b/gtk/gtkprintoperation.c
index 7c20bd8fdd..daf0d37c50 100644
--- a/gtk/gtkprintoperation.c
+++ b/gtk/gtkprintoperation.c
@@ -61,7 +61,7 @@
*
* <example>
* <title>The high-level printing API</title>
- * |[
+ * |[<!-- language="C" -->
* static GtkPrintSettings *settings = NULL;
*
* static void
@@ -853,7 +853,7 @@ gtk_print_operation_class_init (GtkPrintOperationClass *class)
* Emitted for every page that is printed. The signal handler
* must render the @page_nr's page onto the cairo context obtained
* from @context using gtk_print_context_get_cairo_context().
- * |[
+ * |[<!-- language="C" -->
* static void
* draw_page (GtkPrintOperation *operation,
* GtkPrintContext *context,
@@ -3117,7 +3117,7 @@ gtk_print_operation_get_error (GtkPrintOperation *op,
* #GtkPrintOperation::done signal will be emitted with the result of the
* operation when the it is done (i.e. when the dialog is canceled, or when
* the print succeeds or fails).
- * |[
+ * |[<!-- language="C" -->
* if (settings != NULL)
* gtk_print_operation_set_print_settings (print, settings);
*