From b39768dba45107cc4f9fd30acba58042f9eb63c0 Mon Sep 17 00:00:00 2001 From: Francois Mauger Date: Tue, 19 Sep 2023 18:32:19 +0200 Subject: [PATCH] Minor mod --- .../src/configuration/ui/parameter_item_delegate.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/bxdatatools/src/configuration/ui/parameter_item_delegate.cc b/source/bxdatatools/src/configuration/ui/parameter_item_delegate.cc index 2e51c751b..0f4e5ffde 100644 --- a/source/bxdatatools/src/configuration/ui/parameter_item_delegate.cc +++ b/source/bxdatatools/src/configuration/ui/parameter_item_delegate.cc @@ -297,15 +297,15 @@ namespace datatools { DT_LOG_TRACE_ENTERING(logging); if (_path_dialog_) { DT_LOG_DEBUG(logging, "Show QFileDialog..."); - DT_LOG_DEBUG(localLogging, "Show QFileDialog..."); + // DT_LOG_DEBUG(localLogging, "Show QFileDialog..."); _path_dialog_->setModal(true); std::string current_path; command::returned_info cri = _path_record_->get_string_value(current_path); - DT_LOG_DEBUG(localLogging, "current_path='" << current_path << "'"); + // DT_LOG_DEBUG(localLogging, "current_path='" << current_path << "'"); if (cri.is_success()) { if (!current_path.empty()) { datatools::fetch_path_with_env(current_path); - DT_LOG_DEBUG(localLogging, "fetch current_path='" << current_path << "'"); + // DT_LOG_DEBUG(localLogging, "fetch current_path='" << current_path << "'"); _path_dialog_->selectFile(QString::fromStdString(current_path)); } }