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
164aed22
Commit
164aed22
authored
May 20, 2010
by
Erik Verbruggen
Browse files
Fixed scope discovery.
parent
c6fef3ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libs/cplusplus/CppDocument.cpp
View file @
164aed22
...
...
@@ -134,12 +134,18 @@ protected:
// Objective-C
virtual
bool
visit
(
ObjCBaseClass
*
)
{
return
false
;
}
virtual
bool
visit
(
ObjCBaseProtocol
*
)
{
return
false
;
}
virtual
bool
visit
(
ObjCClass
*
)
{
return
false
;
}
virtual
bool
visit
(
ObjCForwardClassDeclaration
*
)
{
return
false
;
}
virtual
bool
visit
(
ObjCProtocol
*
)
{
return
false
;
}
virtual
bool
visit
(
ObjCForwardProtocolDeclaration
*
)
{
return
false
;
}
virtual
bool
visit
(
ObjCMethod
*
)
{
return
false
;
}
virtual
bool
visit
(
ObjCPropertyDeclaration
*
)
{
return
false
;
}
virtual
bool
visit
(
ObjCClass
*
symbol
)
{
return
process
(
symbol
);
}
virtual
bool
visit
(
ObjCProtocol
*
symbol
)
{
return
process
(
symbol
);
}
virtual
bool
visit
(
ObjCMethod
*
symbol
)
{
return
process
(
symbol
);
}
};
class
DocumentDiagnosticClient
:
public
DiagnosticClient
...
...
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