forked from qt-creator/qt-creator
Utils: More forward declarations / drop unused headers [L-O]
Round 1 - focus on headers. For classes with initial in range [L-O]. Try to keep the same separators between different kind of headers. Drop changes to NameValueDictionary for now, as apparently environmentfwd.h is broken currently. It looks we can't forward declare the argument T inside QList<T> - the type must be complete. Change-Id: If26e88357a2ffbb91a79c4d003046443d98d5673 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -72,7 +72,7 @@ private:
|
||||
|
||||
static QString launcherSocketName()
|
||||
{
|
||||
return Utils::TemporaryDirectory::masterDirectoryPath()
|
||||
return TemporaryDirectory::masterDirectoryPath()
|
||||
+ QStringLiteral("/launcher-%1").arg(QString::number(qApp->applicationPid()));
|
||||
}
|
||||
|
||||
@@ -232,7 +232,7 @@ void LauncherInterface::sendData(const QByteArray &data)
|
||||
instance()->m_private->socket()->sendData(data);
|
||||
}
|
||||
|
||||
Utils::Internal::CallerHandle *LauncherInterface::registerHandle(QObject *parent, quintptr token)
|
||||
Internal::CallerHandle *LauncherInterface::registerHandle(QObject *parent, quintptr token)
|
||||
{
|
||||
QMutexLocker locker(&s_instanceMutex);
|
||||
return instance()->m_private->socket()->registerHandle(parent, token);
|
||||
|
||||
Reference in New Issue
Block a user