aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/macros_dlg.h
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2010-06-15 21:18:31 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2010-06-15 21:18:31 +0000
commitb940189f7afcd9debc3381e63c11f9af2be52dab (patch)
tree74ab40fb57d861f7ee24158e4495e300b4127202 /gtk/macros_dlg.h
parent6117869099f21044cd13a918c6004b25a6449beb (diff)
Cleanup header file define guards.
svn path=/trunk/; revision=33230
Diffstat (limited to 'gtk/macros_dlg.h')
-rw-r--r--gtk/macros_dlg.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/gtk/macros_dlg.h b/gtk/macros_dlg.h
index b82b23ea31..52890aee32 100644
--- a/gtk/macros_dlg.h
+++ b/gtk/macros_dlg.h
@@ -20,7 +20,10 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#ifndef __MACROS_DLG_H_
-#define __MACROS_DLG_H_
- void macros_dialog_cb(GtkWidget*, gpointer);
-#endif
+
+#ifndef __MACROS_DLG_H__
+#define __MACROS_DLG_H__
+
+void macros_dialog_cb(GtkWidget*, gpointer);
+
+#endif /* __MACROS_DLG_H__ */