Further cleanup of include dependencies
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user