From 2eef861c69e8439649a67f965af7d61ead11496c Mon Sep 17 00:00:00 2001 From: Jekyll Wu Date: Sun, 8 Jan 2012 12:17:44 +0800 Subject: [PATCH] Krazy2 fix: Should not use leading or trailing underscores on include guard in header --- src/Application.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Application.h b/src/Application.h index d1d1a064..7415fd50 100644 --- a/src/Application.h +++ b/src/Application.h @@ -17,8 +17,8 @@ 02110-1301 USA. */ -#ifndef SRC_APPLICATION_H_ -#define SRC_APPLICATION_H_ +#ifndef SRC_APPLICATION_H +#define SRC_APPLICATION_H // KDE #include @@ -94,4 +94,4 @@ private: MainWindow* _backgroundInstance; }; } -#endif // SRC_APPLICATION_H_ +#endif // SRC_APPLICATION_H