1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

const-correct msgLogfileOpenFailed()

This commit is contained in:
Rafael Bachmann 2015-12-19 13:48:54 +01:00
parent 142f8a9578
commit f5c23ba32d

View File

@ -209,7 +209,7 @@ inline QString msgSendArgumentFailed()
"Unable to send command line arguments to the already running instance. It appears to be not responding.");
}
inline QString msgLogfileOpenFailed(QString &fileName)
inline QString msgLogfileOpenFailed(const QString &fileName)
{
return QCoreApplication::translate("Application", "Failed to open log file %1").arg(fileName);
}