summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Raggi <roberto.raggi@nokia.com>2010-05-28 17:17:11 +0200
committerRoberto Raggi <roberto.raggi@nokia.com>2010-05-28 17:17:11 +0200
commita31de2c37a7ffc11e3f16361c3d08ff4a2208c61 (patch)
tree6c757999666d37d3595c3068ec18e22a067080cb
parent344e0b9ca7a745869de087e81f22a0c0776b9193 (diff)
downloadqt-creator-a31de2c37a7ffc11e3f16361c3d08ff4a2208c61.tar.gz
Fixed header protection.
-rw-r--r--src/libs/cplusplus/ASTParent.h6
-rw-r--r--src/libs/cplusplus/ASTPath.h8
-rw-r--r--src/libs/cplusplus/BackwardsScanner.h6
-rw-r--r--src/libs/cplusplus/CheckUndefinedSymbols.h6
-rw-r--r--src/libs/cplusplus/CppDocument.h6
-rw-r--r--src/libs/cplusplus/DependencyTable.h6
-rw-r--r--src/libs/cplusplus/ExpressionUnderCursor.h6
-rw-r--r--src/libs/cplusplus/FastPreprocessor.h6
-rw-r--r--src/libs/cplusplus/FindUsages.h6
-rw-r--r--src/libs/cplusplus/Macro.h6
-rw-r--r--src/libs/cplusplus/MatchingText.h4
-rw-r--r--src/libs/cplusplus/Overview.h6
-rw-r--r--src/libs/cplusplus/SimpleLexer.h6
-rw-r--r--src/libs/cplusplus/TokenUnderCursor.h6
-rw-r--r--src/libs/cplusplus/TypePrettyPrinter.h6
-rw-r--r--src/libs/cplusplus/pp-macro-expander.h6
16 files changed, 48 insertions, 48 deletions
diff --git a/src/libs/cplusplus/ASTParent.h b/src/libs/cplusplus/ASTParent.h
index d70bcf1591..ee587b1acd 100644
--- a/src/libs/cplusplus/ASTParent.h
+++ b/src/libs/cplusplus/ASTParent.h
@@ -27,8 +27,8 @@
**
**************************************************************************/
-#ifndef ASTPARENT_H
-#define ASTPARENT_H
+#ifndef CPLUSPLUS_ASTPARENT_H
+#define CPLUSPLUS_ASTPARENT_H
#include <ASTVisitor.h>
#include <QtCore/QHash>
@@ -60,4 +60,4 @@ private:
} // namespace CPlusPlus
-#endif // ASTPARENT_H
+#endif // CPLUSPLUS_ASTPARENT_H
diff --git a/src/libs/cplusplus/ASTPath.h b/src/libs/cplusplus/ASTPath.h
index 23d9c74f70..84b5a2ac02 100644
--- a/src/libs/cplusplus/ASTPath.h
+++ b/src/libs/cplusplus/ASTPath.h
@@ -27,13 +27,13 @@
**
**************************************************************************/
-#ifndef ASTPATH_H
-#define ASTPATH_H
+#ifndef CPLUSPLUS_ASTPATH_H
+#define CPLUSPLUS_ASTPATH_H
#include <ASTfwd.h>
#include <ASTVisitor.h>
-#include <cplusplus/CppDocument.h>
+#include "CppDocument.h"
#include <QtCore/QList>
#include <QtGui/QTextCursor>
@@ -72,4 +72,4 @@ private:
} // namespace CppTools
-#endif // ASTPATH_H
+#endif // CPLUSPLUS_ASTPATH_H
diff --git a/src/libs/cplusplus/BackwardsScanner.h b/src/libs/cplusplus/BackwardsScanner.h
index 8ab0685bb1..64be2bc508 100644
--- a/src/libs/cplusplus/BackwardsScanner.h
+++ b/src/libs/cplusplus/BackwardsScanner.h
@@ -26,8 +26,8 @@
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
-#ifndef BACKWARDSSCANNER_H
-#define BACKWARDSSCANNER_H
+#ifndef CPLUSPLUS_BACKWARDSSCANNER_H
+#define CPLUSPLUS_BACKWARDSSCANNER_H
#include "SimpleLexer.h"
@@ -87,4 +87,4 @@ private:
} // end of namespace CPlusPlus
-#endif // BACKWARDSSCANNER_H
+#endif // CPLUSPLUS_BACKWARDSSCANNER_H
diff --git a/src/libs/cplusplus/CheckUndefinedSymbols.h b/src/libs/cplusplus/CheckUndefinedSymbols.h
index ec636191c1..0ca9f5184e 100644
--- a/src/libs/cplusplus/CheckUndefinedSymbols.h
+++ b/src/libs/cplusplus/CheckUndefinedSymbols.h
@@ -27,8 +27,8 @@
**
**************************************************************************/
-#ifndef CHECKUNDEFINEDSYMBOLS_H
-#define CHECKUNDEFINEDSYMBOLS_H
+#ifndef CPLUSPLUS_CHECKUNDEFINEDSYMBOLS_H
+#define CPLUSPLUS_CHECKUNDEFINEDSYMBOLS_H
#include "CppDocument.h"
#include "LookupContext.h"
@@ -88,4 +88,4 @@ private:
} // end of namespace CPlusPlus
-#endif // CHECKUNDEFINEDSYMBOLS_H
+#endif // CPLUSPLUS_CHECKUNDEFINEDSYMBOLS_H
diff --git a/src/libs/cplusplus/CppDocument.h b/src/libs/cplusplus/CppDocument.h
index cd784ed642..cfdd42c244 100644
--- a/src/libs/cplusplus/CppDocument.h
+++ b/src/libs/cplusplus/CppDocument.h
@@ -27,8 +27,8 @@
**
**************************************************************************/
-#ifndef CPPDOCUMENT_H
-#define CPPDOCUMENT_H
+#ifndef CPLUSPLUS_CPPDOCUMENT_H
+#define CPLUSPLUS_CPPDOCUMENT_H
#include <CPlusPlusForwardDeclarations.h>
#include "Macro.h"
@@ -382,4 +382,4 @@ private:
} // end of namespace CPlusPlus
-#endif // CPPDOCUMENT_H
+#endif // CPLUSPLUS_CPPDOCUMENT_H
diff --git a/src/libs/cplusplus/DependencyTable.h b/src/libs/cplusplus/DependencyTable.h
index 97b34c4e59..01d7e7f001 100644
--- a/src/libs/cplusplus/DependencyTable.h
+++ b/src/libs/cplusplus/DependencyTable.h
@@ -27,8 +27,8 @@
**
**************************************************************************/
-#ifndef DEPENDENCYTABLE_H
-#define DEPENDENCYTABLE_H
+#ifndef CPLUSPLUS_DEPENDENCYTABLE_H
+#define CPLUSPLUS_DEPENDENCYTABLE_H
#include <CPlusPlusForwardDeclarations.h>
@@ -62,4 +62,4 @@ private:
} // namespace CPlusPlus
-#endif // DEPENDENCYTABLE_H
+#endif // CPLUSPLUS_DEPENDENCYTABLE_H
diff --git a/src/libs/cplusplus/ExpressionUnderCursor.h b/src/libs/cplusplus/ExpressionUnderCursor.h
index e7ef2f9912..3972aca6e4 100644
--- a/src/libs/cplusplus/ExpressionUnderCursor.h
+++ b/src/libs/cplusplus/ExpressionUnderCursor.h
@@ -27,8 +27,8 @@
**
**************************************************************************/
-#ifndef EXPRESSIONUNDERCURSOR_H
-#define EXPRESSIONUNDERCURSOR_H
+#ifndef CPLUSPLUS_EXPRESSIONUNDERCURSOR_H
+#define CPLUSPLUS_EXPRESSIONUNDERCURSOR_H
#include "CPlusPlusForwardDeclarations.h"
#include <QList>
@@ -64,4 +64,4 @@ private:
} // namespace CPlusPlus
-#endif // EXPRESSIONUNDERCURSOR_H
+#endif // CPLUSPLUS_EXPRESSIONUNDERCURSOR_H
diff --git a/src/libs/cplusplus/FastPreprocessor.h b/src/libs/cplusplus/FastPreprocessor.h
index a22b0ae9de..81506e915c 100644
--- a/src/libs/cplusplus/FastPreprocessor.h
+++ b/src/libs/cplusplus/FastPreprocessor.h
@@ -27,8 +27,8 @@
**
**************************************************************************/
-#ifndef FASTPREPROCESSOR_H
-#define FASTPREPROCESSOR_H
+#ifndef CPLUSPLUS_FASTPREPROCESSOR_H
+#define CPLUSPLUS_FASTPREPROCESSOR_H
#include "PreprocessorClient.h"
#include "CppDocument.h"
@@ -77,4 +77,4 @@ public:
} // end of namespace CPlusPlus
-#endif // FASTPREPROCESSOR_H
+#endif // CPLUSPLUS_FASTPREPROCESSOR_H
diff --git a/src/libs/cplusplus/FindUsages.h b/src/libs/cplusplus/FindUsages.h
index efc0775030..12f7743db7 100644
--- a/src/libs/cplusplus/FindUsages.h
+++ b/src/libs/cplusplus/FindUsages.h
@@ -27,8 +27,8 @@
**
**************************************************************************/
-#ifndef FINDUSAGES_H
-#define FINDUSAGES_H
+#ifndef CPLUSPLUS_FINDUSAGES_H
+#define CPLUSPLUS_FINDUSAGES_H
#include "LookupContext.h"
#include "CppDocument.h"
@@ -119,4 +119,4 @@ private:
} // end of namespace CPlusPlus
-#endif // FINDUSAGES_H
+#endif // CPLUSPLUS_FINDUSAGES_H
diff --git a/src/libs/cplusplus/Macro.h b/src/libs/cplusplus/Macro.h
index 3a16e6e28a..2ff54b12cb 100644
--- a/src/libs/cplusplus/Macro.h
+++ b/src/libs/cplusplus/Macro.h
@@ -46,8 +46,8 @@
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-#ifndef PP_MACRO_H
-#define PP_MACRO_H
+#ifndef CPLUSPLUS_PP_MACRO_H
+#define CPLUSPLUS_PP_MACRO_H
#include <CPlusPlusForwardDeclarations.h>
@@ -153,4 +153,4 @@ private:
} // namespace CPlusPlus
-#endif // PP_MACRO_H
+#endif // CPLUSPLUS_PP_MACRO_H
diff --git a/src/libs/cplusplus/MatchingText.h b/src/libs/cplusplus/MatchingText.h
index 6c83970e92..5a49fa927c 100644
--- a/src/libs/cplusplus/MatchingText.h
+++ b/src/libs/cplusplus/MatchingText.h
@@ -26,8 +26,8 @@
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
-#ifndef MATCHINGTEXT_H
-#define MATCHINGTEXT_H
+#ifndef CPLUSPLUS_MATCHINGTEXT_H
+#define CPLUSPLUS_MATCHINGTEXT_H
#include <CPlusPlusForwardDeclarations.h>
#include <QtGui/QTextCursor>
diff --git a/src/libs/cplusplus/Overview.h b/src/libs/cplusplus/Overview.h
index b1018def6b..9cebefed01 100644
--- a/src/libs/cplusplus/Overview.h
+++ b/src/libs/cplusplus/Overview.h
@@ -27,8 +27,8 @@
**
**************************************************************************/
-#ifndef OVERVIEW_H
-#define OVERVIEW_H
+#ifndef CPLUSPLUS_OVERVIEW_H
+#define CPLUSPLUS_OVERVIEW_H
#include <CPlusPlusForwardDeclarations.h>
#include <QString>
@@ -92,4 +92,4 @@ private:
} // end of namespace CPlusPlus
-#endif // OVERVIEW_H
+#endif // CPLUSPLUS_OVERVIEW_H
diff --git a/src/libs/cplusplus/SimpleLexer.h b/src/libs/cplusplus/SimpleLexer.h
index 5046b0f6db..f3af52b6b6 100644
--- a/src/libs/cplusplus/SimpleLexer.h
+++ b/src/libs/cplusplus/SimpleLexer.h
@@ -26,8 +26,8 @@
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
-#ifndef SIMPLELEXER_H
-#define SIMPLELEXER_H
+#ifndef CPLUSPLUS_SIMPLELEXER_H
+#define CPLUSPLUS_SIMPLELEXER_H
#include <CPlusPlusForwardDeclarations.h>
@@ -143,4 +143,4 @@ private:
} // end of namespace CPlusPlus
-#endif // SIMPLELEXER_H
+#endif // CPLUSPLUS_SIMPLELEXER_H
diff --git a/src/libs/cplusplus/TokenUnderCursor.h b/src/libs/cplusplus/TokenUnderCursor.h
index af1da311ec..92d421963c 100644
--- a/src/libs/cplusplus/TokenUnderCursor.h
+++ b/src/libs/cplusplus/TokenUnderCursor.h
@@ -26,8 +26,8 @@
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
-#ifndef TOKENUNDERCURSOR_H
-#define TOKENUNDERCURSOR_H
+#ifndef CPLUSPLUS_TOKENUNDERCURSOR_H
+#define CPLUSPLUS_TOKENUNDERCURSOR_H
#include "SimpleLexer.h"
#include <QList>
@@ -58,4 +58,4 @@ private:
} // end of namespace CPlusPlus
-#endif // TOKENUNDERCURSOR_H
+#endif // CPLUSPLUS_TOKENUNDERCURSOR_H
diff --git a/src/libs/cplusplus/TypePrettyPrinter.h b/src/libs/cplusplus/TypePrettyPrinter.h
index d5775bd9b8..aed93e0e75 100644
--- a/src/libs/cplusplus/TypePrettyPrinter.h
+++ b/src/libs/cplusplus/TypePrettyPrinter.h
@@ -26,8 +26,8 @@
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
-#ifndef TYPEPRETTYPRINTER_H
-#define TYPEPRETTYPRINTER_H
+#ifndef CPLUSPLUS_TYPEPRETTYPRINTER_H
+#define CPLUSPLUS_TYPEPRETTYPRINTER_H
#include <TypeVisitor.h>
#include <FullySpecifiedType.h>
@@ -86,4 +86,4 @@ private:
} // end of namespace CPlusPlus
-#endif // TYPEPRETTYPRINTER_H
+#endif // CPLUSPLUS_TYPEPRETTYPRINTER_H
diff --git a/src/libs/cplusplus/pp-macro-expander.h b/src/libs/cplusplus/pp-macro-expander.h
index e4d10217e4..f19be4111f 100644
--- a/src/libs/cplusplus/pp-macro-expander.h
+++ b/src/libs/cplusplus/pp-macro-expander.h
@@ -46,8 +46,8 @@
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-#ifndef PP_MACRO_EXPANDER_H
-#define PP_MACRO_EXPANDER_H
+#ifndef CPLUSPLUS_PP_MACRO_EXPANDER_H
+#define CPLUSPLUS_PP_MACRO_EXPANDER_H
#include "Macro.h"
#include "pp-scanner.h"
@@ -102,5 +102,5 @@ public: // attributes
} // namespace CPlusPlus
-#endif // PP_MACRO_EXPANDER_H
+#endif // CPLUSPLUS_PP_MACRO_EXPANDER_H