Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flatpak-qt-creator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
16b1e8b4
Commit
16b1e8b4
authored
Aug 12, 2010
by
Roberto Raggi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renamed Symboo::isScopedSymbol().
parent
b2baaee4
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
src/libs/cplusplus/OverviewModel.cpp
src/libs/cplusplus/OverviewModel.cpp
+1
-1
src/plugins/debugger/watchutils.cpp
src/plugins/debugger/watchutils.cpp
+1
-1
src/shared/cplusplus/Symbol.cpp
src/shared/cplusplus/Symbol.cpp
+1
-1
src/shared/cplusplus/Symbol.h
src/shared/cplusplus/Symbol.h
+2
-2
No files found.
src/libs/cplusplus/OverviewModel.cpp
View file @
16b1e8b4
...
...
@@ -177,7 +177,7 @@ QVariant OverviewModel::data(const QModelIndex &index, int role) const
name
=
QLatin1Char
(
'+'
)
+
name
;
else
name
=
QLatin1Char
(
'-'
)
+
name
;
}
else
if
(
!
symbol
->
isScope
dSymbol
()
||
symbol
->
isFunction
())
{
}
else
if
(
!
symbol
->
isScope
()
||
symbol
->
isFunction
())
{
QString
type
=
_overview
.
prettyType
(
symbol
->
type
());
if
(
!
type
.
isEmpty
())
{
if
(
!
symbol
->
type
()
->
isFunctionType
())
...
...
src/plugins/debugger/watchutils.cpp
View file @
16b1e8b4
...
...
@@ -84,7 +84,7 @@ static void debugCppSymbolRecursion(QTextStream &str, const Overview &o,
str
<<
" declaration"
;
if
(
s
.
isBlock
())
str
<<
" block"
;
if
(
doRecurse
&&
s
.
isScope
dSymbol
())
{
if
(
doRecurse
&&
s
.
isScope
())
{
const
Scope
*
scoped
=
s
.
asScope
();
const
int
size
=
scoped
->
memberCount
();
str
<<
" scoped symbol of "
<<
size
<<
'\n'
;
...
...
src/shared/cplusplus/Symbol.cpp
View file @
16b1e8b4
...
...
@@ -344,7 +344,7 @@ bool Symbol::isProtected() const
bool
Symbol
::
isPrivate
()
const
{
return
_visibility
==
Private
;
}
bool
Symbol
::
isScope
dSymbol
()
const
bool
Symbol
::
isScope
()
const
{
return
asScope
()
!=
0
;
}
bool
Symbol
::
isEnum
()
const
...
...
src/shared/cplusplus/Symbol.h
View file @
16b1e8b4
...
...
@@ -156,8 +156,8 @@ public:
/// Returns true if this Symbol's visibility is private.
bool
isPrivate
()
const
;
/// Returns true if this Symbol is a Scope
dSymbol
.
bool
isScope
dSymbol
()
const
;
/// Returns true if this Symbol is a Scope.
bool
isScope
()
const
;
/// Returns true if this Symbol is an Enum.
bool
isEnum
()
const
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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