Fix: Pass string list as const so that it's readable from QML.

This commit is contained in:
Filippo Scognamiglio
2014-12-21 16:09:07 +01:00
parent 5abc46fb0a
commit 71f2f3f9f0
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -175,7 +175,7 @@ QString KSession::getInitialWorkingDirectory()
return _initialWorkingDirectory;
}
void KSession::setArgs(QStringList &args)
void KSession::setArgs(const QStringList &args)
{
m_session->setArguments(args);
}