summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2014-01-17 15:46:23 +0100
committerJoerg Bornemann <joerg.bornemann@digia.com>2014-02-07 11:41:06 +0100
commit71d2d8c89b148c5d9d970c98d6d3bf39ba5c785d (patch)
tree11643b28fdecef0c7fcfc5c5637c3a813b3dca6e /tests
parent93cf624dd5ce4e03f168248996849e346128044c (diff)
unify include guards
Change-Id: I3d3f4b7971a77ebec09f462214848d378c3ebf06 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/tests.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/tests.h b/tests/tests.h
index 636b376..6b1f10d 100644
--- a/tests/tests.h
+++ b/tests/tests.h
@@ -17,7 +17,9 @@
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
-#pragma once
+
+#ifndef TESTS_H
+#define TESTS_H
#include <QtCore/QObject>
#include <QtCore/QString>
@@ -93,3 +95,5 @@ private:
NMakeFile::MakefileFactory* m_makefileFactory;
QProcess *m_jomProcess;
};
+
+#endif // TESTS_H