Try to make Travis happy
This commit is contained in:
parent
2ef538c171
commit
23999fece5
|
@ -996,7 +996,7 @@ void ProjectFile::SafeChecks::saveToXml(QXmlStreamWriter &xmlWriter) const
|
||||||
xmlWriter.writeEndElement();
|
xmlWriter.writeEndElement();
|
||||||
}
|
}
|
||||||
|
|
||||||
QString ProjectFile::getAddonFilePath(QString filesDir, QString addon)
|
QString ProjectFile::getAddonFilePath(QString filesDir, const QString &addon)
|
||||||
{
|
{
|
||||||
if (!filesDir.endsWith("/"))
|
if (!filesDir.endsWith("/"))
|
||||||
filesDir += "/";
|
filesDir += "/";
|
||||||
|
|
|
@ -167,7 +167,12 @@ public:
|
||||||
return mAddons;
|
return mAddons;
|
||||||
}
|
}
|
||||||
|
|
||||||
static QString getAddonFilePath(QString filesDir, QString addon);
|
/**
|
||||||
|
* @brief Get path to addon python script
|
||||||
|
* @param filesDir Data files folder set by --data-dir
|
||||||
|
* @param addon addon i.e. "misra" to lookup
|
||||||
|
*/
|
||||||
|
static QString getAddonFilePath(QString filesDir, const QString &addon);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get list of addons and tools.
|
* @brief Get list of addons and tools.
|
||||||
|
|
Loading…
Reference in New Issue