[gnome-devel-docs] programming-guidelines: Properly escape some entities
- From: Federico Mena Quintero <federico src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-devel-docs] programming-guidelines: Properly escape some entities
- Date: Mon, 12 Aug 2013 22:46:49 +0000 (UTC)
commit ef170f50cbe7e1aeef3bd56b71db134350ba9d1b
Author: Federico Mena Quintero <federico gnome org>
Date: Mon Aug 12 17:34:55 2013 -0500
programming-guidelines: Properly escape some entities
programming-guidelines/C/c-coding-style.page | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/programming-guidelines/C/c-coding-style.page b/programming-guidelines/C/c-coding-style.page
index 71e51e8..ed8992f 100644
--- a/programming-guidelines/C/c-coding-style.page
+++ b/programming-guidelines/C/c-coding-style.page
@@ -707,8 +707,8 @@ gint gtk_type_update_foobar (GtkType *type);
</p>
<code>
-#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
-#error "Only <gtk/gtk.h> can be included directly."
+#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
+#error "Only <gtk/gtk.h> can be included directly."
#endif
</code>
@@ -722,7 +722,7 @@ gint gtk_type_update_foobar (GtkType *type);
#ifndef __MYLIB_FOO_H__
#define __MYLIB_FOO_H__
-#include <gtk/gtk.h>
+#include <gtk/gtk.h>
G_BEGIN_DECLS
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]