Tweak include guards

This commit is contained in:
Matthias Clasen
2010-04-13 23:20:09 -04:00
parent fe3e6f85be
commit 47c8dc8878
2 changed files with 6 additions and 6 deletions

View File

@@ -8,8 +8,8 @@
* See the included COPYING file for more information.
*/
#ifndef _gsettings_h_
#define _gsettings_h_
#ifndef __G_SETTINGS_H__
#define __G_SETTINGS_H__
#include "gsettingsbackend.h"
@@ -111,4 +111,4 @@ void g_settings_unbind (gpointe
G_END_DECLS
#endif /* _gsettings_h_ */
#endif /* __G_SETTINGS_H__ */

View File

@@ -8,8 +8,8 @@
* See the included COPYING file for more information.
*/
#ifndef _gsettingsbackend_h_
#define _gsettingsbackend_h_
#ifndef __G_SETTINGS_BACKEND_H__
#define __G_SETTINGS_BACKEND_H__
#include <glib-object.h>
@@ -111,4 +111,4 @@ gboolean g_settings_backend_class_supports_context (GSettingsBackendClass *
G_END_DECLS
#endif /* _gsettingsbackend_h_ */
#endif /* __G_SETTINGS_BACKEND_H__ */