Disable Clang Analyzer for now. It needs a little more work.
This commit is contained in:
parent
da0185387f
commit
52c121c223
|
@ -129,7 +129,7 @@ public:
|
|||
QStringList getAddonsAndTools() const;
|
||||
|
||||
bool getClangAnalyzer() const {
|
||||
return mClangAnalyzer;
|
||||
return false; //mClangAnalyzer;
|
||||
}
|
||||
|
||||
void setClangAnalyzer(bool c) {
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue