Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qt-creator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Hunger
qt-creator
Commits
e3093103
Commit
e3093103
authored
14 years ago
by
hjk
Browse files
Options
Downloads
Patches
Plain Diff
debugger: remove macro from breakhandler/h
parent
5209b396
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/plugins/debugger/breakhandler.cpp
+1
-1
1 addition, 1 deletion
src/plugins/debugger/breakhandler.cpp
src/plugins/debugger/breakhandler.h
+17
-14
17 additions, 14 deletions
src/plugins/debugger/breakhandler.h
with
18 additions
and
15 deletions
src/plugins/debugger/breakhandler.cpp
+
1
−
1
View file @
e3093103
...
@@ -520,7 +520,7 @@ PROPERTY(QString, functionName, setFunctionName)
...
@@ -520,7 +520,7 @@ PROPERTY(QString, functionName, setFunctionName)
PROPERTY
(
BreakpointType
,
type
,
setType
)
PROPERTY
(
BreakpointType
,
type
,
setType
)
PROPERTY
(
QByteArray
,
threadSpec
,
setThreadSpec
)
PROPERTY
(
QByteArray
,
threadSpec
,
setThreadSpec
)
PROPERTY
(
QByteArray
,
condition
,
setCondition
)
PROPERTY
(
QByteArray
,
condition
,
setCondition
)
PROPERTY
(
int
,
lineNumber
,
setL
ineNumber
)
GETTER
(
int
,
l
ineNumber
)
PROPERTY
(
quint64
,
address
,
setAddress
)
PROPERTY
(
quint64
,
address
,
setAddress
)
PROPERTY
(
int
,
ignoreCount
,
setIgnoreCount
)
PROPERTY
(
int
,
ignoreCount
,
setIgnoreCount
)
...
...
This diff is collapsed.
Click to expand it.
src/plugins/debugger/breakhandler.h
+
17
−
14
View file @
e3093103
...
@@ -100,20 +100,23 @@ public:
...
@@ -100,20 +100,23 @@ public:
// Getter retrieves property value.
// Getter retrieves property value.
// Setter sets property value and triggers update if changed.
// Setter sets property value and triggers update if changed.
#define PROPERTY(type, getter, setter) \
bool
useFullPath
(
BreakpointId
id
)
const
;
type getter(BreakpointId id) const; \
void
setUseFullPath
(
BreakpointId
,
const
bool
&
on
);
void setter(BreakpointId id, const type &value);
QByteArray
condition
(
BreakpointId
id
)
const
;
void
setCondition
(
BreakpointId
,
const
QByteArray
&
condition
);
PROPERTY
(
bool
,
useFullPath
,
setUseFullPath
)
int
ignoreCount
(
BreakpointId
id
)
const
;
PROPERTY
(
QByteArray
,
condition
,
setCondition
)
void
setIgnoreCount
(
BreakpointId
,
const
int
&
count
);
PROPERTY
(
int
,
ignoreCount
,
setIgnoreCount
)
QByteArray
threadSpec
(
BreakpointId
id
)
const
;
PROPERTY
(
QByteArray
,
threadSpec
,
setThreadSpec
)
void
setThreadSpec
(
BreakpointId
,
const
QByteArray
&
spec
);
PROPERTY
(
QString
,
fileName
,
setFileName
)
QString
fileName
(
BreakpointId
id
)
const
;
PROPERTY
(
QString
,
functionName
,
setFunctionName
)
void
setFileName
(
BreakpointId
,
const
QString
&
fileName
);
PROPERTY
(
BreakpointType
,
type
,
setType
);
QString
functionName
(
BreakpointId
id
)
const
;
PROPERTY
(
quint64
,
address
,
setAddress
);
void
setFunctionName
(
BreakpointId
,
const
QString
&
functionName
);
PROPERTY
(
int
,
lineNumber
,
setLineNumber
);
BreakpointType
type
(
BreakpointId
id
)
const
;
#undef PROPERTY
void
setType
(
BreakpointId
id
,
const
BreakpointType
&
type
);
quint64
address
(
BreakpointId
id
)
const
;
void
setAddress
(
BreakpointId
id
,
const
quint64
&
address
);
int
lineNumber
(
BreakpointId
id
)
const
;
void
setBreakpointData
(
BreakpointId
id
,
const
BreakpointParameters
&
data
);
void
setBreakpointData
(
BreakpointId
id
,
const
BreakpointParameters
&
data
);
const
BreakpointParameters
&
breakpointData
(
BreakpointId
id
)
const
;
const
BreakpointParameters
&
breakpointData
(
BreakpointId
id
)
const
;
BreakpointState
state
(
BreakpointId
id
)
const
;
BreakpointState
state
(
BreakpointId
id
)
const
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment