From d6b21df2e61318c3465272c9055be4451060d94c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 19 Sep 2013 23:17:52 +0000 Subject: correct include guards and add checks in check_style_c.py for them. --- source/blender/editors/space_info/textview.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source/blender/editors/space_info/textview.h') diff --git a/source/blender/editors/space_info/textview.h b/source/blender/editors/space_info/textview.h index 653c9b83a50..2f9e518ed47 100644 --- a/source/blender/editors/space_info/textview.h +++ b/source/blender/editors/space_info/textview.h @@ -24,6 +24,8 @@ * \ingroup spinfo */ +#ifndef __TEXTVIEW_H__ +#define __TEXTVIEW_H__ typedef struct TextViewContext { int lheight; @@ -59,3 +61,5 @@ int textview_draw(struct TextViewContext *tvc, const int draw, int mval[2], void #define TVC_LINE_FG (1<<0) #define TVC_LINE_BG (1<<1) + +#endif /* __TEXTVIEW_H__ */ -- cgit v1.2.3