[gexiv2] Use proper include guards
- From: Jens Georg <jensgeorg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gexiv2] Use proper include guards
- Date: Mon, 20 Mar 2017 11:18:17 +0000 (UTC)
commit 04726391277395d63caaa1df1d0a098df8e2657b
Author: Jens Georg <mail jensge org>
Date: Mon Mar 20 12:06:38 2017 +0100
Use proper include guards
Signed-off-by: Jens Georg <mail jensge org>
gexiv2/gexiv2-log-private.h | 6 +++---
gexiv2/gexiv2-log.h | 6 +++---
gexiv2/gexiv2-metadata-private.h | 6 +++---
gexiv2/gexiv2-metadata.h | 6 +++---
gexiv2/gexiv2-preview-image-private.h | 6 +++---
gexiv2/gexiv2-preview-image.h | 6 +++---
gexiv2/gexiv2-preview-properties-private.h | 6 +++---
gexiv2/gexiv2-preview-properties.h | 6 +++---
gexiv2/gexiv2-startup.h | 4 ++--
gexiv2/gexiv2-stream-io.h | 6 +++---
gexiv2/gexiv2.h | 6 +++---
11 files changed, 32 insertions(+), 32 deletions(-)
---
diff --git a/gexiv2/gexiv2-log-private.h b/gexiv2/gexiv2-log-private.h
index 394a479..1d0be8d 100644
--- a/gexiv2/gexiv2-log-private.h
+++ b/gexiv2/gexiv2-log-private.h
@@ -7,8 +7,8 @@
* This is free software. See COPYING for details.
*/
-#ifndef __GEXIV2_LOG_PRIVATE_H__
-#define __GEXIV2_LOG_PRIVATE_H__
+#ifndef GEXIV2_LOG_PRIVATE_H
+#define GEXIV2_LOG_PRIVATE_H
#include <gexiv2/gexiv2-log.h>
#include <exiv2/error.hpp>
@@ -19,4 +19,4 @@ G_GNUC_INTERNAL gboolean gexiv2_log_is_handler_installed(void);
G_END_DECLS
-#endif /* __GEXIV2_LOG_PRIVATE_H__ */
+#endif /* GEXIV2_LOG_PRIVATE_H */
diff --git a/gexiv2/gexiv2-log.h b/gexiv2/gexiv2-log.h
index b385105..c5467a6 100644
--- a/gexiv2/gexiv2-log.h
+++ b/gexiv2/gexiv2-log.h
@@ -7,8 +7,8 @@
* This is free software. See COPYING for details.
*/
-#ifndef __GEXIV2_LOG_H__
-#define __GEXIV2_LOG_H__
+#ifndef GEXIV2_LOG_H
+#define GEXIV2_LOG_H
#include <glib.h>
@@ -97,4 +97,4 @@ void gexiv2_log_use_glib_logging(void);
G_END_DECLS
-#endif /* __GEXIV2_LOG_H__ */
+#endif /* GEXIV2_LOG_H */
diff --git a/gexiv2/gexiv2-metadata-private.h b/gexiv2/gexiv2-metadata-private.h
index 6bab883..d85453c 100644
--- a/gexiv2/gexiv2-metadata-private.h
+++ b/gexiv2/gexiv2-metadata-private.h
@@ -7,8 +7,8 @@
* This is free software. See COPYING for details.
*/
-#ifndef __GEXIV2_METADATA_PRIVATE_H__
-#define __GEXIV2_METADATA_PRIVATE_H__
+#ifndef GEXIV2_METADATA_PRIVATE_H
+#define GEXIV2_METADATA_PRIVATE_H
#include <gexiv2/gexiv2-metadata.h>
#include <exiv2/image.hpp>
@@ -89,4 +89,4 @@ G_GNUC_INTERNAL GBytes* gexiv2_metadata_get_iptc_tag_raw
(GExiv2Metadata *self
G_END_DECLS
-#endif /* __GEXIV2_METADATA_PRIVATE_H__ */
+#endif /* GEXIV2_METADATA_PRIVATE_H */
diff --git a/gexiv2/gexiv2-metadata.h b/gexiv2/gexiv2-metadata.h
index f0ce9ca..ddfcf36 100644
--- a/gexiv2/gexiv2-metadata.h
+++ b/gexiv2/gexiv2-metadata.h
@@ -8,8 +8,8 @@
* This is free software. See COPYING for details.
*/
-#ifndef __GEXIV2_METADATA_H__
-#define __GEXIV2_METADATA_H__
+#ifndef GEXIV2_METADATA_H
+#define GEXIV2_METADATA_H
#include <glib-object.h>
#include <gio/gio.h>
@@ -893,5 +893,5 @@ GExiv2PreviewImage* gexiv2_metadata_get_preview_image (GExiv2Metadata
*self, GE
G_END_DECLS
-#endif /* __GEXIV2_METADATA_H__ */
+#endif /* GEXIV2_METADATA_H */
diff --git a/gexiv2/gexiv2-preview-image-private.h b/gexiv2/gexiv2-preview-image-private.h
index 921fa76..810304c 100644
--- a/gexiv2/gexiv2-preview-image-private.h
+++ b/gexiv2/gexiv2-preview-image-private.h
@@ -7,8 +7,8 @@
* This is free software. See COPYING for details.
*/
-#ifndef __GEXIV2_PREVIEW_IMAGE_PRIVATE_H__
-#define __GEXIV2_PREVIEW_IMAGE_PRIVATE_H__
+#ifndef GEXIV2_PREVIEW_IMAGE_PRIVATE_H
+#define GEXIV2_PREVIEW_IMAGE_PRIVATE_H
#include <gexiv2/gexiv2-preview-image.h>
#include <exiv2/preview.hpp>
@@ -27,4 +27,4 @@ G_GNUC_INTERNAL GExiv2PreviewImage* gexiv2_preview_image_new (Exiv2::PreviewMana
G_END_DECLS
-#endif /* __GEXIV2_PREVIEW_IMAGE_PRIVATE_H__ */
+#endif /* GEXIV2_PREVIEW_IMAGE_PRIVATE_H */
diff --git a/gexiv2/gexiv2-preview-image.h b/gexiv2/gexiv2-preview-image.h
index bec59b6..c629f61 100644
--- a/gexiv2/gexiv2-preview-image.h
+++ b/gexiv2/gexiv2-preview-image.h
@@ -7,8 +7,8 @@
* This is free software. See COPYING for details.
*/
-#ifndef __GEXIV2_PREVIEW_IMAGE_H__
-#define __GEXIV2_PREVIEW_IMAGE_H__
+#ifndef GEXIV2_PREVIEW_IMAGE_H
+#define GEXIV2_PREVIEW_IMAGE_H
#include <glib-object.h>
#include <gio/gio.h>
@@ -122,5 +122,5 @@ glong gexiv2_preview_image_write_file
(GExiv2PreviewImage *self, const gchar
G_END_DECLS
-#endif /* __GEXIV2_PREVIEW_IMAGE_H__ */
+#endif /* GEXIV2_PREVIEW_IMAGE_H */
diff --git a/gexiv2/gexiv2-preview-properties-private.h b/gexiv2/gexiv2-preview-properties-private.h
index 0baa707..bacb392 100644
--- a/gexiv2/gexiv2-preview-properties-private.h
+++ b/gexiv2/gexiv2-preview-properties-private.h
@@ -7,8 +7,8 @@
* This is free software. See COPYING for details.
*/
-#ifndef __GEXIV2_PREVIEW_PROPERTIES_PRIVATE_H__
-#define __GEXIV2_PREVIEW_PROPERTIES_PRIVATE_H__
+#ifndef GEXIV2_PREVIEW_PROPERTIES_PRIVATE_H
+#define GEXIV2_PREVIEW_PROPERTIES_PRIVATE_H
#include <gexiv2/gexiv2-preview-properties.h>
#include <exiv2/preview.hpp>
@@ -26,4 +26,4 @@ G_GNUC_INTERNAL void gexiv2_preview_properties_free(GExiv2PreviewProperties *sel
G_END_DECLS
-#endif /* __GEXIV2_PREVIEW_PROPERTIES_PRIVATE_H__ */
+#endif /* GEXIV2_PREVIEW_PROPERTIES_PRIVATE_H */
diff --git a/gexiv2/gexiv2-preview-properties.h b/gexiv2/gexiv2-preview-properties.h
index 9331a04..6cbec61 100644
--- a/gexiv2/gexiv2-preview-properties.h
+++ b/gexiv2/gexiv2-preview-properties.h
@@ -7,8 +7,8 @@
* This is free software. See COPYING for details.
*/
-#ifndef __GEXIV2_PREVIEW_PROPERTIES_H__
-#define __GEXIV2_PREVIEW_PROPERTIES_H__
+#ifndef GEXIV2_PREVIEW_PROPERTIES_H
+#define GEXIV2_PREVIEW_PROPERTIES_H
#include <glib-object.h>
#include <gio/gio.h>
@@ -101,5 +101,5 @@ guint32 gexiv2_preview_properties_get_height
(GExiv2PreviewProperties *self);
G_END_DECLS
-#endif /* __GEXIV2_PREVIEW_PROPERTIES_H__ */
+#endif /* GEXIV2_PREVIEW_PROPERTIES_H */
diff --git a/gexiv2/gexiv2-startup.h b/gexiv2/gexiv2-startup.h
index 7ba73b1..0caba72 100644
--- a/gexiv2/gexiv2-startup.h
+++ b/gexiv2/gexiv2-startup.h
@@ -7,8 +7,8 @@
* This is free software. See COPYING for details.
*/
-#ifndef __GEXIV2_STARTUP_H__
-#define __GEXIV2_STARTUP_H__
+#ifndef GEXIV2_STARTUP_H
+#define GEXIV2_STARTUP_H
#include <glib-object.h>
diff --git a/gexiv2/gexiv2-stream-io.h b/gexiv2/gexiv2-stream-io.h
index 6e0b0fe..76621a9 100644
--- a/gexiv2/gexiv2-stream-io.h
+++ b/gexiv2/gexiv2-stream-io.h
@@ -12,8 +12,8 @@
* ManagedStream to exiv2.
*/
-#ifndef __GEXIV2_STREAM_IO_H__
-#define __GEXIV2_STREAM_IO_H__
+#ifndef GEXIV2_STREAM_IO_H
+#define GEXIV2_STREAM_IO_H
#include <gexiv2/gexiv2-managed-stream.h>
#include <exiv2/basicio.hpp>
@@ -67,5 +67,5 @@ private:
};
-#endif /* __GEXIV2_STREAM_IO_H__ */
+#endif /* GEXIV2_STREAM_IO_H */
diff --git a/gexiv2/gexiv2.h b/gexiv2/gexiv2.h
index 2eb92f9..27ffa55 100644
--- a/gexiv2/gexiv2.h
+++ b/gexiv2/gexiv2.h
@@ -7,8 +7,8 @@
* This is free software. See COPYING for details.
*/
-#ifndef __GEXIV2_H__
-#define __GEXIV2_H__
+#ifndef GEXIV2_H
+#define GEXIV2_H
#include <gexiv2/gexiv2-metadata.h>
#include <gexiv2/gexiv2-managed-stream.h>
@@ -18,4 +18,4 @@
#include <gexiv2/gexiv2-startup.h>
#include <gexiv2/gexiv2-version.h>
-#endif /* __GEXIV2_H__ */
+#endif /* GEXIV2_H */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]