diff options
| author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2015-02-04 12:18:30 +0200 |
|---|---|---|
| committer | Orgad Shaneh <orgads@gmail.com> | 2015-02-04 10:26:12 +0000 |
| commit | 5d1e13fbd20290e516f1f58c26706ab43414dfad (patch) | |
| tree | ff9a431b535cb965964bfea0de0a39ec889b4bcb /src | |
| parent | f0aea93b44302b3c36caffa68beefdcdbcd1464a (diff) | |
| download | qt-creator-5d1e13fbd20290e516f1f58c26706ab43414dfad.tar.gz | |
ProjectExplorer: Use explicit namespace
Change-Id: I923b856170f1c4ddd48da2434bf77d4b46da8d99
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/plugins/projectexplorer/projecttree.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/projecttree.cpp b/src/plugins/projectexplorer/projecttree.cpp index fb865a768b..24042850e6 100644 --- a/src/plugins/projectexplorer/projecttree.cpp +++ b/src/plugins/projectexplorer/projecttree.cpp @@ -53,7 +53,9 @@ const char EXTERNAL_FILE_WARNING[] = "ExternalFile"; } using namespace Utils; -using namespace ProjectExplorer; + +namespace ProjectExplorer { + using namespace Internal; ProjectTree *ProjectTree::s_instance = 0; @@ -499,3 +501,5 @@ bool ProjectTree::isInNodeHierarchy(Node *n) } while (n); return false; } + +} // namespace ProjectExplorer |
