Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
84ebb104
Commit
84ebb104
authored
Jul 05, 2010
by
Roberto Raggi
Browse files
Moved CheckUndefinedSymbols to the cpptools plug-in.
parent
9bb67101
Changes
7
Hide whitespace changes
Inline
Side-by-side
src/libs/cplusplus/cplusplus-lib.pri
View file @
84ebb104
...
...
@@ -38,7 +38,6 @@ HEADERS += \
$$PWD/ASTPath.h \
$$PWD/DeprecatedGenTemplateInstance.h \
$$PWD/FindUsages.h \
$$PWD/CheckUndefinedSymbols.h \
$$PWD/DependencyTable.h \
$$PWD/PreprocessorClient.h \
$$PWD/PreprocessorEnvironment.h \
...
...
@@ -64,7 +63,6 @@ SOURCES += \
$$PWD/ASTPath.cpp \
$$PWD/DeprecatedGenTemplateInstance.cpp \
$$PWD/FindUsages.cpp \
$$PWD/CheckUndefinedSymbols.cpp \
$$PWD/DependencyTable.cpp \
$$PWD/PreprocessorClient.cpp \
$$PWD/PreprocessorEnvironment.cpp \
...
...
src/
libs/cplusplus/C
heck
U
ndefined
S
ymbols.cpp
→
src/
plugins/cppeditor/cppc
heck
u
ndefined
s
ymbols.cpp
View file @
84ebb104
...
...
@@ -27,8 +27,8 @@
**
**************************************************************************/
#include
"
C
heck
U
ndefined
S
ymbols.h"
#include
"
Overview.h
"
#include
"
cppc
heck
u
ndefined
s
ymbols.h"
#include
<cplusplus/
Overview.h
>
#include
<Names.h>
#include
<Literals.h>
...
...
src/
libs/cplusplus/C
heck
U
ndefined
S
ymbols.h
→
src/
plugins/cppeditor/cppc
heck
u
ndefined
s
ymbols.h
View file @
84ebb104
...
...
@@ -30,14 +30,14 @@
#ifndef CPLUSPLUS_CHECKUNDEFINEDSYMBOLS_H
#define CPLUSPLUS_CHECKUNDEFINEDSYMBOLS_H
#include
"
CppDocument.h
"
#include
"
LookupContext.h
"
#include
<cplusplus/
CppDocument.h
>
#include
<cplusplus/
LookupContext.h
>
#include
<ASTVisitor.h>
#include
<QtCore/QSet>
namespace
CPlusPlus
{
class
CPLUSPLUS_EXPORT
CheckUndefinedSymbols
:
protected
ASTVisitor
class
CheckUndefinedSymbols
:
protected
ASTVisitor
{
public:
CheckUndefinedSymbols
(
TranslationUnit
*
unit
,
const
LookupContext
&
context
);
...
...
src/plugins/cppeditor/cppeditor.cpp
View file @
84ebb104
...
...
@@ -31,6 +31,8 @@
#include
"cppeditorconstants.h"
#include
"cppplugin.h"
#include
"cpphighlighter.h"
#include
"cppcheckundefinedsymbols.h"
#include
"cppquickfix.h"
#include
<cpptools/cpptoolsplugin.h>
...
...
@@ -54,7 +56,6 @@
#include
<cplusplus/MatchingText.h>
#include
<cplusplus/BackwardsScanner.h>
#include
<cplusplus/FastPreprocessor.h>
#include
<cplusplus/CheckUndefinedSymbols.h>
#include
<cpptools/cppmodelmanagerinterface.h>
#include
<cpptools/cpptoolsconstants.h>
...
...
src/plugins/cppeditor/cppeditor.pro
View file @
84ebb104
...
...
@@ -15,7 +15,8 @@ HEADERS += cppplugin.h \
cppeditor_global
.
h
\
cppclasswizard
.
h
\
cppquickfix
.
h
\
cpprefactoringchanges
.
h
cpprefactoringchanges
.
h
\
cppcheckundefinedsymbols
.
h
SOURCES
+=
cppplugin
.
cpp
\
cppeditor
.
cpp
\
...
...
@@ -24,7 +25,8 @@ SOURCES += cppplugin.cpp \
cppfilewizard
.
cpp
\
cppclasswizard
.
cpp
\
cppquickfix
.
cpp
\
cpprefactoringchanges
.
cpp
cpprefactoringchanges
.
cpp
\
cppcheckundefinedsymbols
.
cpp
RESOURCES
+=
cppeditor
.
qrc
...
...
src/plugins/cpptools/cppmodelmanager.cpp
View file @
84ebb104
...
...
@@ -29,7 +29,6 @@
#include
<cplusplus/pp.h>
#include
<cplusplus/Overview.h>
#include
<cplusplus/CheckUndefinedSymbols.h>
#include
"cppmodelmanager.h"
#ifndef ICHECK_BUILD
...
...
src/shared/cplusplus/Symbols.h
View file @
84ebb104
...
...
@@ -57,7 +57,7 @@
namespace
CPlusPlus
{
class
TemplateParameters
class
CPLUSPLUS_EXPORT
TemplateParameters
{
public:
TemplateParameters
(
Scope
*
scope
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment