[evolution-data-server/openismus-work-master: 102/134] CursorExample: Changed include guard style from __FOO_H__ to FOO_H



commit e24db81b1979fe48f067f6f2b8db27ca52277f9b
Author: Tristan Van Berkom <tristanvb openismus com>
Date:   Sun Oct 6 00:34:02 2013 +0200

    CursorExample: Changed include guard style from __FOO_H__ to FOO_H

 tests/cursor-example/cursor-data.h      |    6 +++---
 tests/cursor-example/cursor-example.h   |    6 +++---
 tests/cursor-example/cursor-navigator.h |    6 +++---
 tests/cursor-example/cursor-search.h    |    6 +++---
 tests/cursor-example/cursor-slot.h      |    6 +++---
 5 files changed, 15 insertions(+), 15 deletions(-)
---
diff --git a/tests/cursor-example/cursor-data.h b/tests/cursor-example/cursor-data.h
index 247f775..8a8cf85 100644
--- a/tests/cursor-example/cursor-data.h
+++ b/tests/cursor-example/cursor-data.h
@@ -18,12 +18,12 @@
  *
  * Author: Tristan Van Berkom <tristanvb openismus com>
  */
-#ifndef __CURSOR_DATA_H__
-#define __CURSOR_DATA_H__
+#ifndef CURSOR_DATA_H
+#define CURSOR_DATA_H
 
 #include <libebook/libebook.h>
 
 EBookClient *cursor_load_data (const gchar        *vcard_path,
                               EBookClientCursor **ret_cursor);
 
-#endif /* __CURSOR_DATA_H__ */
+#endif /* CURSOR_DATA_H */
diff --git a/tests/cursor-example/cursor-example.h b/tests/cursor-example/cursor-example.h
index 7807c14..a68d009 100644
--- a/tests/cursor-example/cursor-example.h
+++ b/tests/cursor-example/cursor-example.h
@@ -19,8 +19,8 @@
  * Author: Tristan Van Berkom <tristanvb openismus com>
  */
  
-#ifndef __CURSOR_EXAMPLE_H__
-#define __CURSOR_EXAMPLE_H__
+#ifndef CURSOR_EXAMPLE_H
+#define CURSOR_EXAMPLE_H
 
 #include <gtk/gtk.h>
 
@@ -54,4 +54,4 @@ GtkWidget  *cursor_example_new      (const gchar   *vcard_path);
 
 G_END_DECLS
 
-#endif /* __CURSOR_EXAMPLE_H__ */
+#endif /* CURSOR_EXAMPLE_H */
diff --git a/tests/cursor-example/cursor-navigator.h b/tests/cursor-example/cursor-navigator.h
index 494e111..a309816 100644
--- a/tests/cursor-example/cursor-navigator.h
+++ b/tests/cursor-example/cursor-navigator.h
@@ -19,8 +19,8 @@
  * Author: Tristan Van Berkom <tristanvb openismus com>
  */
  
-#ifndef __CURSOR_NAVIGATOR_H__
-#define __CURSOR_NAVIGATOR_H__
+#ifndef CURSOR_NAVIGATOR_H
+#define CURSOR_NAVIGATOR_H
 
 #include <gtk/gtk.h>
 
@@ -60,4 +60,4 @@ gint                 cursor_navigator_get_index       (CursorNavigator     *navi
 
 G_END_DECLS
 
-#endif /* __CURSOR_NAVIGATOR_H__ */
+#endif /* CURSOR_NAVIGATOR_H */
diff --git a/tests/cursor-example/cursor-search.h b/tests/cursor-example/cursor-search.h
index 496f16d..ca1527d 100644
--- a/tests/cursor-example/cursor-search.h
+++ b/tests/cursor-example/cursor-search.h
@@ -19,8 +19,8 @@
  * Author: Tristan Van Berkom <tristanvb openismus com>
  */
  
-#ifndef __CURSOR_SEARCH_H__
-#define __CURSOR_SEARCH_H__
+#ifndef CURSOR_SEARCH_H
+#define CURSOR_SEARCH_H
 
 #include <gtk/gtk.h>
 
@@ -55,4 +55,4 @@ const gchar *cursor_search_get_sexp  (CursorSearch *search);
 
 G_END_DECLS
 
-#endif /* __CURSOR_SEARCH_H__ */
+#endif /* CURSOR_SEARCH_H */
diff --git a/tests/cursor-example/cursor-slot.h b/tests/cursor-example/cursor-slot.h
index 39bb672..d83eef9 100644
--- a/tests/cursor-example/cursor-slot.h
+++ b/tests/cursor-example/cursor-slot.h
@@ -19,8 +19,8 @@
  * Author: Tristan Van Berkom <tristanvb openismus com>
  */
  
-#ifndef __CURSOR_SLOT_H__
-#define __CURSOR_SLOT_H__
+#ifndef CURSOR_SLOT_H
+#define CURSOR_SLOT_H
 
 #include <gtk/gtk.h>
 #include <libebook/libebook.h>
@@ -57,4 +57,4 @@ void        cursor_slot_set_from_contact (CursorSlot *slot,
 
 G_END_DECLS
 
-#endif /* __CURSOR_SLOT_H__ */
+#endif /* CURSOR_SLOT_H */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]