debugger: mover qml related engines to the Internal namespace

This commit is contained in:
hjk
2010-12-03 12:07:32 +01:00
parent 4c5f78de18
commit d9210302ce
5 changed files with 31 additions and 37 deletions

View File

@@ -149,8 +149,8 @@ public:
explicit QmlEnginePrivate(QmlEngine *q);
~QmlEnginePrivate() { delete m_adapter; }
friend class Debugger::QmlEngine;
private:
friend class QmlEngine;
int m_ping;
QmlAdapter *m_adapter;
ProjectExplorer::ApplicationLauncher m_applicationLauncher;
@@ -160,9 +160,6 @@ QmlEnginePrivate::QmlEnginePrivate(QmlEngine *q)
: m_ping(0), m_adapter(new QmlAdapter(q))
{}
} // namespace Internal
using namespace Internal;
///////////////////////////////////////////////////////////////////////
//
@@ -177,8 +174,7 @@ QmlEngine::QmlEngine(const DebuggerStartParameters &startParameters)
}
QmlEngine::~QmlEngine()
{
}
{}
void QmlEngine::gotoLocation(const QString &fileName, int lineNumber, bool setMarker)
{
@@ -867,5 +863,6 @@ QString QmlEngine::fromShadowBuildFilename(const QString &filename) const
return newFilename;
}
} // namespace Internal
} // namespace Debugger