Mercurial > hg > sonic-visualiser
comparison main/MainWindow.cpp @ 1145:52cbb3f6b9fa pluginscan
Make use of, and warn for, the plugin checker for all types of plugin. Haven't yet resolved the question of how to install and find it.
author | Chris Cannam |
---|---|
date | Thu, 14 Apr 2016 14:03:18 +0100 |
parents | 6fcb632384ba |
children | b3b5885e7c2c |
comparison
equal
deleted
inserted
replaced
1144:a1ce253dc90e | 1145:52cbb3f6b9fa |
---|---|
67 #include "data/fileio/MIDIFileWriter.h" | 67 #include "data/fileio/MIDIFileWriter.h" |
68 #include "data/fileio/BZipFileDevice.h" | 68 #include "data/fileio/BZipFileDevice.h" |
69 #include "data/fileio/FileSource.h" | 69 #include "data/fileio/FileSource.h" |
70 #include "data/midi/MIDIInput.h" | 70 #include "data/midi/MIDIInput.h" |
71 #include "base/RecentFiles.h" | 71 #include "base/RecentFiles.h" |
72 #include "plugin/PluginScan.h" | |
72 #include "transform/TransformFactory.h" | 73 #include "transform/TransformFactory.h" |
73 #include "transform/ModelTransformerFactory.h" | 74 #include "transform/ModelTransformerFactory.h" |
74 #include "base/PlayParameterRepository.h" | 75 #include "base/PlayParameterRepository.h" |
75 #include "base/XmlExportable.h" | 76 #include "base/XmlExportable.h" |
76 #include "widgets/CommandHistory.h" | 77 #include "widgets/CommandHistory.h" |
328 } else { | 329 } else { |
329 m_surveyer = 0; | 330 m_surveyer = 0; |
330 m_versionTester = 0; | 331 m_versionTester = 0; |
331 } | 332 } |
332 | 333 |
333 QString warning = TransformFactory::getInstance()->getPluginPopulationWarning(); | 334 QString warning = PluginScan::getInstance()->getStartupFailureReport(); |
334 if (warning != "") pluginPopulationWarning(warning); | 335 if (warning != "") pluginPopulationWarning(warning); |
335 } | 336 } |
336 | 337 |
337 MainWindow::~MainWindow() | 338 MainWindow::~MainWindow() |
338 { | 339 { |