diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-02-14 23:34:22 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-02-14 23:34:22 -0500 |
commit | c779b42476ef0e33a22c13104b0b9351c370d71c (patch) | |
tree | f6bd9f652cdedad52b54168ebbacc69f7261e541 /gtk/gtkdialog.c | |
parent | e179c65da037a2354cc8db4f824590014ef8bc87 (diff) | |
download | gtk+-c779b42476ef0e33a22c13104b0b9351c370d71c.tar.gz |
Docs: use // for comments in examples
Without sgml mode, we can't escape /* as /* anymore,
so just switch to // for comments in examples.
Diffstat (limited to 'gtk/gtkdialog.c')
-rw-r--r-- | gtk/gtkdialog.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gtk/gtkdialog.c b/gtk/gtkdialog.c index 806f8ed9d7..5eb83b9da4 100644 --- a/gtk/gtkdialog.c +++ b/gtk/gtkdialog.c @@ -100,14 +100,14 @@ * * An example for simple GtkDialog usage: * |[<!-- language="C" --> - * /* Function to open a dialog box with a message */ + * // Function to open a dialog box with a message * void * quick_message (GtkWindow *parent, gchar *message) * { * GtkWidget *dialog, *label, *content_area; * GtkDialogFlags flags; * - * /* Create the widgets */ + * // Create the widgets * flags = GTK_DIALOG_DESTROY_WITH_PARENT; * dialog = gtk_dialog_new_with_buttons ("Message", * parent, @@ -118,15 +118,14 @@ * content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog)); * label = gtk_label_new (message); * - * /* Ensure that the dialog box is destroyed when the user - * responds */ + * // Ensure that the dialog box is destroyed when the user responds * * g_signal_connect_swapped (dialog, * "response", * G_CALLBACK (gtk_widget_destroy), * dialog); * - * /* Add the label, and show everything we’ve added */ + * // Add the label, and show everything we’ve added * * gtk_container_add (GTK_CONTAINER (content_area), label); * gtk_widget_show_all (dialog); |