forked from qt-creator/qt-creator
Make it easy to set a kit matcher.
Using a function to set a kit matcher is much easier that crating a new
class. It also enables an easy way to reuse classes that are using it.
E.g.
DeviceProcessesDialog processDialog;
processDialog.kitChooser()->setKitMatcher([](const Kit* kit) {
return kit->isValid() && other_checks_with(kit);
});
Change-Id: I4e2fc7c52038902412cec5331504230bb8160ceb
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
@@ -69,7 +69,6 @@ public:
|
||||
explicit DebuggerKitChooser(Mode mode = AnyDebugging, QWidget *parent = 0);
|
||||
|
||||
protected:
|
||||
bool kitMatches(const ProjectExplorer::Kit *k) const;
|
||||
QString kitToolTip(ProjectExplorer::Kit *k) const;
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user