Skip to content

Commit

Permalink
Debugger: Use QStringLiteral where appropriate
Browse files Browse the repository at this point in the history
Change-Id: I5c33113783834ef0c7292f5f19f12d8c68f42141
Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com>
  • Loading branch information
Kai Koehne authored and Qt by Nokia committed Mar 13, 2012
1 parent 70ac6b1 commit fd1e8c8
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion src/qml/debugger/qdebugmessageservice.cpp
Expand Up @@ -69,7 +69,7 @@ class QDebugMessageServicePrivate : public QQmlDebugServicePrivate

QDebugMessageService::QDebugMessageService(QObject *parent) :
QQmlDebugService(*(new QDebugMessageServicePrivate()),
QLatin1String("DebugMessages"), 2, parent)
QStringLiteral("DebugMessages"), 2, parent)
{
Q_D(QDebugMessageService);

Expand Down
24 changes: 12 additions & 12 deletions src/qml/debugger/qqmldebugserver.cpp
Expand Up @@ -155,7 +155,7 @@ void QQmlDebugServerPrivate::advertisePlugins()
pluginNames << service->name();
pluginVersions << service->version();
}
out << QString(QLatin1String("QDeclarativeDebugClient")) << 1 << pluginNames << pluginVersions;
out << QString(QStringLiteral("QDeclarativeDebugClient")) << 1 << pluginNames << pluginVersions;
}

QMetaObject::invokeMethod(q, "_q_sendMessages", Qt::QueuedConnection, Q_ARG(QList<QByteArray>, QList<QByteArray>() << message));
Expand Down Expand Up @@ -217,8 +217,8 @@ void QQmlDebugServerThread::run()
connection->setPort(m_port, m_block);
} else {
QCoreApplicationPrivate *appD = static_cast<QCoreApplicationPrivate*>(QObjectPrivate::get(qApp));
qWarning() << QString::fromAscii("QML Debugger: Ignoring \"-qmljsdebugger=%1\". "
"Remote debugger plugin has not been found.").arg(appD->qmljsDebugArgumentsString());
qWarning() << QString(QLatin1String("QML Debugger: Ignoring \"-qmljsdebugger=%1\". "
"Remote debugger plugin has not been found.")).arg(appD->qmljsDebugArgumentsString());
}

exec();
Expand Down Expand Up @@ -262,9 +262,9 @@ QQmlDebugServer *QQmlDebugServer::instance()
// format: qmljsdebugger=port:3768[,block] OR qmljsdebugger=ost[,block]
if (!appD->qmljsDebugArgumentsString().isEmpty()) {
if (!QQmlEnginePrivate::qml_debugging_enabled) {
qWarning() << QString::fromLatin1(
qWarning() << QString(QLatin1String(
"QML Debugger: Ignoring \"-qmljsdebugger=%1\". "
"Debugging has not been enabled.").arg(
"Debugging has not been enabled.")).arg(
appD->qmljsDebugArgumentsString());
return 0;
}
Expand All @@ -273,9 +273,9 @@ QQmlDebugServer *QQmlDebugServer::instance()
if (appD->qmljsDebugArgumentsString().indexOf(QLatin1String("port:")) == 0) {
int separatorIndex = appD->qmljsDebugArgumentsString().indexOf(QLatin1Char(','));
port = appD->qmljsDebugArgumentsString().mid(5, separatorIndex - 5).toInt(&ok);
pluginName = QLatin1String("qmldbg_tcp");
pluginName = QStringLiteral("qmldbg_tcp");
} else if (appD->qmljsDebugArgumentsString().contains(QLatin1String("ost"))) {
pluginName = QLatin1String("qmldbg_ost");
pluginName = QStringLiteral("qmldbg_ost");
ok = true;
}

Expand All @@ -298,17 +298,17 @@ QQmlDebugServer *QQmlDebugServer::instance()
}

} else {
qWarning() << QString::fromLatin1(
qWarning() << QString(QLatin1String(
"QML Debugger: Ignoring \"-qmljsdebugger=%1\". "
"Format is -qmljsdebugger=port:<port>[,block]").arg(
"Format is -qmljsdebugger=port:<port>[,block]")).arg(
appD->qmljsDebugArgumentsString());
}
}
#else
if (!appD->qmljsDebugArgumentsString().isEmpty()) {
qWarning() << QString::fromLatin1(
qWarning() << QString(QLatin1String(
"QML Debugger: Ignoring \"-qmljsdebugger=%1\". "
"QtQml is not configured for debugging.").arg(
"QtQml is not configured for debugging.")).arg(
appD->qmljsDebugArgumentsString());
}
#endif
Expand Down Expand Up @@ -373,7 +373,7 @@ void QQmlDebugServer::receiveMessage(const QByteArray &message)
pluginVersions << service->version();
}

out << QString(QLatin1String("QDeclarativeDebugClient")) << 0 << protocolVersion << pluginNames << pluginVersions;
out << QString(QStringLiteral("QDeclarativeDebugClient")) << 0 << protocolVersion << pluginNames << pluginVersions;
}
d->connection->send(QList<QByteArray>() << helloAnswer);

Expand Down
4 changes: 2 additions & 2 deletions src/qml/debugger/qqmldebugservice.cpp
Expand Up @@ -216,11 +216,11 @@ bool QQmlDebugService::hasDebuggingClient()
QString QQmlDebugService::objectToString(QObject *obj)
{
if(!obj)
return QLatin1String("NULL");
return QStringLiteral("NULL");

QString objectName = obj->objectName();
if(objectName.isEmpty())
objectName = QLatin1String("<unnamed>");
objectName = QStringLiteral("<unnamed>");

QString rv = QString::fromUtf8(obj->metaObject()->className()) +
QLatin1String(": ") + objectName;
Expand Down
16 changes: 8 additions & 8 deletions src/qml/debugger/qqmlenginedebugservice.cpp
Expand Up @@ -67,7 +67,7 @@ QQmlEngineDebugService *QQmlEngineDebugService::instance()
}

QQmlEngineDebugService::QQmlEngineDebugService(QObject *parent)
: QQmlDebugService(QLatin1String("QDeclarativeEngine"), 1, parent),
: QQmlDebugService(QStringLiteral("QDeclarativeEngine"), 1, parent),
m_watch(new QQmlWatcher(this)),
m_statesDelegate(0)
{
Expand Down Expand Up @@ -206,12 +206,12 @@ QVariant QQmlEngineDebugService::valueContents(const QVariant &value) const
if (o) {
QString name = o->objectName();
if (name.isEmpty())
name = QLatin1String("<unnamed object>");
name = QStringLiteral("<unnamed object>");
return name;
}
}

return QLatin1String("<unknown value>");
return QStringLiteral("<unknown value>");
}

void QQmlEngineDebugService::buildObjectDump(QDataStream &message,
Expand Down Expand Up @@ -247,7 +247,7 @@ void QQmlEngineDebugService::buildObjectDump(QDataStream &message,
prop.value = expr->expression();
QObject *scope = expr->scopeObject();
if (scope) {
QString sig = QLatin1String(scope->metaObject()->method(signal->index()).signature());
QString sig = QString::fromLatin1(scope->metaObject()->method(signal->index()).signature());
int lparen = sig.indexOf(QLatin1Char('('));
if (lparen >= 0) {
QString methodName = sig.mid(0, lparen);
Expand Down Expand Up @@ -510,11 +510,11 @@ void QQmlEngineDebugService::processMessage(const QByteArray &message)
bool undefined = false;
QVariant value = exprObj.evaluate(&undefined);
if (undefined)
result = QLatin1String("<undefined>");
result = QString(QStringLiteral("<undefined>"));
else
result = valueContents(value);
} else {
result = QLatin1String("<unknown context>");
result = QString(QStringLiteral("<unknown context>"));
}

QByteArray reply;
Expand Down Expand Up @@ -667,11 +667,11 @@ void QQmlEngineDebugService::setMethodBody(int objectId, const QString &method,

QString paramStr;
for (int ii = 0; ii < paramNames.count(); ++ii) {
if (ii != 0) paramStr.append(QLatin1String(","));
if (ii != 0) paramStr.append(QLatin1Char(','));
paramStr.append(QString::fromUtf8(paramNames.at(ii)));
}

QString jsfunction = QLatin1String("(function ") + method + QLatin1String("(") + paramStr +
QString jsfunction = QLatin1String("(function ") + method + QLatin1Char('(') + paramStr +
QLatin1String(") {");
jsfunction += body;
jsfunction += QLatin1String("\n})");
Expand Down
2 changes: 1 addition & 1 deletion src/qml/debugger/qqmlinspectorservice.cpp
Expand Up @@ -58,7 +58,7 @@ QT_BEGIN_NAMESPACE
Q_GLOBAL_STATIC(QQmlInspectorService, serviceInstance)

QQmlInspectorService::QQmlInspectorService()
: QQmlDebugService(QLatin1String("QDeclarativeObserverMode"), 1)
: QQmlDebugService(QStringLiteral("QDeclarativeObserverMode"), 1)
, m_currentInspectorPlugin(0)
{
registerService();
Expand Down
2 changes: 1 addition & 1 deletion src/qml/debugger/qqmlprofilerservice.cpp
Expand Up @@ -77,7 +77,7 @@ QByteArray QQmlProfilerData::toByteArray() const
}

QQmlProfilerService::QQmlProfilerService()
: QQmlDebugService(QLatin1String("CanvasFrameRate"), 1),
: QQmlDebugService(QStringLiteral("CanvasFrameRate"), 1),
m_enabled(false), m_messageReceived(false)
{
m_timer.start();
Expand Down
2 changes: 1 addition & 1 deletion src/qml/debugger/qv8debugservice.cpp
Expand Up @@ -120,7 +120,7 @@ class QV8DebugServicePrivate : public QQmlDebugServicePrivate

QV8DebugService::QV8DebugService(QObject *parent)
: QQmlDebugService(*(new QV8DebugServicePrivate()),
QLatin1String("V8Debugger"), 2, parent)
QStringLiteral("V8Debugger"), 2, parent)
{
Q_D(QV8DebugService);
v8ServiceInstancePtr = this;
Expand Down
2 changes: 1 addition & 1 deletion src/qml/debugger/qv8profilerservice.cpp
Expand Up @@ -101,7 +101,7 @@ class QV8ProfilerServicePrivate : public QQmlDebugServicePrivate
};

QV8ProfilerService::QV8ProfilerService(QObject *parent)
: QQmlDebugService(*(new QV8ProfilerServicePrivate()), QLatin1String("V8Profiler"), 1, parent)
: QQmlDebugService(*(new QV8ProfilerServicePrivate()), QStringLiteral("V8Profiler"), 1, parent)
{
Q_D(QV8ProfilerService);

Expand Down

0 comments on commit fd1e8c8

Please sign in to comment.