Disable Clang Analyzer for now. It needs a little more work.

This commit is contained in:
Daniel Marjamäki 2017-10-05 08:47:07 +02:00
parent da0185387f
commit 52c121c223
2 changed files with 3 additions and 1 deletions

View File

@ -129,7 +129,7 @@ public:
QStringList getAddonsAndTools() const;
bool getClangAnalyzer() const {
return mClangAnalyzer;
return false; //mClangAnalyzer;
}
void setClangAnalyzer(bool c) {

View File

@ -38,6 +38,8 @@ ProjectFileDialog::ProjectFileDialog(ProjectFile *projectFile, QWidget *parent)
{
mUI.setupUi(this);
mUI.mToolClangAnalyzer->hide();
const QFileInfo inf(projectFile->getFilename());
QString filename = inf.fileName();
QString title = tr("Project file: %1").arg(filename);