CppCheck: Rework settings handling

Change-Id: Id9c9b316c5e0d39bc5fcba14951664e72d947a71
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
hjk
2023-05-15 18:00:42 +02:00
parent 77c19ae213
commit 824de3046c
8 changed files with 174 additions and 333 deletions

View File

@@ -17,21 +17,15 @@ class SelectableFilesFromDirModel;
namespace Cppcheck::Internal {
class OptionsWidget;
class CppcheckOptions;
class ManualRunDialog : public QDialog
{
public:
ManualRunDialog(const CppcheckOptions &options,
const ProjectExplorer::Project *project);
ManualRunDialog(QWidget *optionsWidget, const ProjectExplorer::Project *project);
CppcheckOptions options() const;
Utils::FilePaths filePaths() const;
QSize sizeHint() const override;
private:
OptionsWidget *m_options;
ProjectExplorer::SelectableFilesFromDirModel *m_model;
};