Further cleanup of include dependencies

This commit is contained in:
Ingo Weyrich
2019-10-30 22:12:06 +01:00
parent 4dcee23cb3
commit 6935faa258
68 changed files with 100 additions and 158 deletions

View File

@@ -587,7 +587,7 @@ void LensProfilePanel::onCorrModeChanged(const Gtk::RadioButton* rbChanged)
LensProfilePanel::LFDbHelper::LFDbHelper()
{
#ifdef _OPENMP
#pragma omp parallel sections if (!options.rtSettings.verbose)
#pragma omp parallel sections if (!settings->verbose)
#endif
{
#ifdef _OPENMP
@@ -609,7 +609,7 @@ LensProfilePanel::LFDbHelper::LFDbHelper()
void LensProfilePanel::LFDbHelper::fillLensfunCameras()
{
if (options.rtSettings.verbose) {
if (settings->verbose) {
std::cout << "LENSFUN, scanning cameras:" << std::endl;
}
@@ -619,7 +619,7 @@ void LensProfilePanel::LFDbHelper::fillLensfunCameras()
for (const auto& c : camlist) {
camnames[c.getMake()].insert(c.getModel());
if (options.rtSettings.verbose) {
if (settings->verbose) {
std::cout << " found: " << c.getDisplayString().c_str() << std::endl;
}
}
@@ -639,7 +639,7 @@ void LensProfilePanel::LFDbHelper::fillLensfunCameras()
void LensProfilePanel::LFDbHelper::fillLensfunLenses()
{
if (options.rtSettings.verbose) {
if (settings->verbose) {
std::cout << "LENSFUN, scanning lenses:" << std::endl;
}
@@ -651,7 +651,7 @@ void LensProfilePanel::LFDbHelper::fillLensfunLenses()
const auto& make = l.getMake();
lenses[make].insert(name);
if (options.rtSettings.verbose) {
if (settings->verbose) {
std::cout << " found: " << l.getDisplayString().c_str() << std::endl;
}
}