MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / getLibraries

Method getLibraries

gui/projectfiledialog.cpp:760–769  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

758}
759
760QStringList ProjectFileDialog::getLibraries() const
761{
762 QStringList libraries;
763 for (int row = 0; row < mUI->mLibraries->count(); ++row) {
764 QListWidgetItem *item = mUI->mLibraries->item(row);
765 if (item->checkState() == Qt::Checked)
766 libraries << item->text();
767 }
768 return libraries;
769}
770
771void ProjectFileDialog::setRootPath(const QString &root)
772{

Callers 2

loadFromProjectFileMethod · 0.80
getCppcheckSettingsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected