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
Tobias Hunger
qt-creator
Commits
fc48f53b
Commit
fc48f53b
authored
Aug 04, 2010
by
Olivier Goffart
Browse files
Do not include private headers
parent
524e279e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libs/qmljsdebugclient/qdeclarativedebug.cpp
View file @
fc48f53b
...
@@ -43,8 +43,6 @@
...
@@ -43,8 +43,6 @@
#include "qdeclarativedebugclient_p.h"
#include "qdeclarativedebugclient_p.h"
#include <private/qobject_p.h>
namespace
QmlJsDebugClient
{
namespace
QmlJsDebugClient
{
class
QDeclarativeEngineDebugClient
:
public
QDeclarativeDebugClient
class
QDeclarativeEngineDebugClient
:
public
QDeclarativeDebugClient
...
@@ -112,7 +110,7 @@ int QDeclarativeEngineDebugPrivate::getId()
...
@@ -112,7 +110,7 @@ int QDeclarativeEngineDebugPrivate::getId()
void
QDeclarativeEngineDebugPrivate
::
remove
(
QDeclarativeEngineDebug
*
c
,
QDeclarativeDebugEnginesQuery
*
q
)
void
QDeclarativeEngineDebugPrivate
::
remove
(
QDeclarativeEngineDebug
*
c
,
QDeclarativeDebugEnginesQuery
*
q
)
{
{
if
(
c
&&
q
)
{
if
(
c
&&
q
)
{
QDeclarativeEngineDebugPrivate
*
p
=
(
QDeclarativeEngineDebugPrivate
*
)
QObjectPrivate
::
get
(
c
);
QDeclarativeEngineDebugPrivate
*
p
=
c
->
d_func
(
);
p
->
enginesQuery
.
remove
(
q
->
m_queryId
);
p
->
enginesQuery
.
remove
(
q
->
m_queryId
);
}
}
}
}
...
@@ -121,7 +119,7 @@ void QDeclarativeEngineDebugPrivate::remove(QDeclarativeEngineDebug *c,
...
@@ -121,7 +119,7 @@ void QDeclarativeEngineDebugPrivate::remove(QDeclarativeEngineDebug *c,
QDeclarativeDebugRootContextQuery
*
q
)
QDeclarativeDebugRootContextQuery
*
q
)
{
{
if
(
c
&&
q
)
{
if
(
c
&&
q
)
{
QDeclarativeEngineDebugPrivate
*
p
=
(
QDeclarativeEngineDebugPrivate
*
)
QObjectPrivate
::
get
(
c
);
QDeclarativeEngineDebugPrivate
*
p
=
c
->
d_func
(
);
p
->
rootContextQuery
.
remove
(
q
->
m_queryId
);
p
->
rootContextQuery
.
remove
(
q
->
m_queryId
);
}
}
}
}
...
@@ -129,7 +127,7 @@ void QDeclarativeEngineDebugPrivate::remove(QDeclarativeEngineDebug *c,
...
@@ -129,7 +127,7 @@ void QDeclarativeEngineDebugPrivate::remove(QDeclarativeEngineDebug *c,
void
QDeclarativeEngineDebugPrivate
::
remove
(
QDeclarativeEngineDebug
*
c
,
QDeclarativeDebugObjectQuery
*
q
)
void
QDeclarativeEngineDebugPrivate
::
remove
(
QDeclarativeEngineDebug
*
c
,
QDeclarativeDebugObjectQuery
*
q
)
{
{
if
(
c
&&
q
)
{
if
(
c
&&
q
)
{
QDeclarativeEngineDebugPrivate
*
p
=
(
QDeclarativeEngineDebugPrivate
*
)
QObjectPrivate
::
get
(
c
);
QDeclarativeEngineDebugPrivate
*
p
=
c
->
d_func
(
);
p
->
objectQuery
.
remove
(
q
->
m_queryId
);
p
->
objectQuery
.
remove
(
q
->
m_queryId
);
}
}
}
}
...
@@ -137,7 +135,7 @@ void QDeclarativeEngineDebugPrivate::remove(QDeclarativeEngineDebug *c, QDeclara
...
@@ -137,7 +135,7 @@ void QDeclarativeEngineDebugPrivate::remove(QDeclarativeEngineDebug *c, QDeclara
void
QDeclarativeEngineDebugPrivate
::
remove
(
QDeclarativeEngineDebug
*
c
,
QDeclarativeDebugExpressionQuery
*
q
)
void
QDeclarativeEngineDebugPrivate
::
remove
(
QDeclarativeEngineDebug
*
c
,
QDeclarativeDebugExpressionQuery
*
q
)
{
{
if
(
c
&&
q
)
{
if
(
c
&&
q
)
{
QDeclarativeEngineDebugPrivate
*
p
=
(
QDeclarativeEngineDebugPrivate
*
)
QObjectPrivate
::
get
(
c
);
QDeclarativeEngineDebugPrivate
*
p
=
c
->
d_func
(
);
p
->
expressionQuery
.
remove
(
q
->
m_queryId
);
p
->
expressionQuery
.
remove
(
q
->
m_queryId
);
}
}
}
}
...
...
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