Skip to content
GitLab
Menu
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
afd9fd82
Commit
afd9fd82
authored
Aug 05, 2009
by
ck
Browse files
Debugger auto tests: Tracked changes to QObjectPrivate.
parent
5b2abd85
Changes
1
Hide whitespace changes
Inline
Side-by-side
share/qtcreator/gdbmacros/gdbmacros_p.h
View file @
afd9fd82
...
...
@@ -91,6 +91,7 @@ public:
ObjectPrivate
()
{}
virtual
~
ObjectPrivate
()
{}
#if QT_VERSION < 0x040600
QList
<
QObject
*>
pendingChildInsertedEvents
;
void
*
threadData
;
void
*
currentSender
;
...
...
@@ -98,18 +99,26 @@ public:
QList
<
QPointer
<
QObject
>
>
eventFilters
;
void
*
extraData
;
#if QT_VERSION >= 0x040600
mutable
quint32
connectedSignals
[
2
];
#else
mutable
quint32
connectedSignals
;
#endif
QString
objectName
;
void
*
connectionLists
;
SenderList
senders
;
int
*
deleteWatch
;
#if QT_VERSION >= 0x040600
#else
QString
objectName
;
void
*
extraData
;
void
*
threadData
;
void
*
connectionLists
;
SenderList
senders
;
void
*
currentSender
;
mutable
quint32
connectedSignals
[
2
];
QList
<
QObject
*>
pendingChildInsertedEvents
;
QList
<
QPointer
<
QObject
>
>
eventFilters
;
void
*
currentChildBeingDeleted
;
void
*
declarativeData
;
void
*
objectGuards
;
int
*
deleteWatch
;
#endif
};
...
...
Write
Preview
Supports
Markdown
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