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
524e279e
Commit
524e279e
authored
Aug 04, 2010
by
Olivier Goffart
Browse files
Do not include private headers
parent
6c73fb8f
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/libs/qmljsdebugclient/qdeclarativedebug.cpp
View file @
524e279e
...
...
@@ -59,9 +59,9 @@ private:
QDeclarativeEngineDebugPrivate
*
priv
;
};
class
QDeclarativeEngineDebugPrivate
:
public
QObjectPrivate
class
QDeclarativeEngineDebugPrivate
{
Q_DECLARE_PUBLIC
(
QDeclarativeEngineDebug
)
//
Q_DECLARE_PUBLIC(QDeclarativeEngineDebug)
public:
QDeclarativeEngineDebugPrivate
(
QDeclarativeDebugConnection
*
);
...
...
@@ -377,9 +377,10 @@ void QDeclarativeEngineDebugPrivate::message(const QByteArray &data)
}
QDeclarativeEngineDebug
::
QDeclarativeEngineDebug
(
QDeclarativeDebugConnection
*
client
,
QObject
*
parent
)
:
QObject
(
*
(
new
QDeclarativeEngineDebugPrivate
(
client
))
,
parent
)
:
QObject
(
parent
),
d_ptr
(
new
QDeclarativeEngineDebugPrivate
(
client
))
{
}
QDeclarativeEngineDebug
::~
QDeclarativeEngineDebug
()
{}
QDeclarativeDebugPropertyWatch
*
QDeclarativeEngineDebug
::
addWatch
(
const
QDeclarativeDebugPropertyReference
&
property
,
QObject
*
parent
)
{
...
...
src/libs/qmljsdebugclient/qdeclarativedebug_p.h
View file @
524e279e
...
...
@@ -70,6 +70,7 @@ class QDeclarativeEngineDebug : public QObject
Q_OBJECT
public:
QDeclarativeEngineDebug
(
QDeclarativeDebugConnection
*
,
QObject
*
=
0
);
~
QDeclarativeEngineDebug
();
QDeclarativeDebugPropertyWatch
*
addWatch
(
const
QDeclarativeDebugPropertyReference
&
,
QObject
*
parent
=
0
);
...
...
@@ -101,6 +102,8 @@ public:
private:
Q_DECLARE_PRIVATE
(
QDeclarativeEngineDebug
)
Q_DISABLE_COPY
(
QDeclarativeEngineDebug
)
QScopedPointer
<
QDeclarativeEngineDebugPrivate
>
d_ptr
;
};
...
...
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