Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 932322
Collapse All | Expand All

(-)easyeffects-4.8.7-orig/src/convolver_ui.cpp (-1 / +1 lines)
Lines 186-192 Link Here
186
186
187
    out_path.replace_extension(".irs");
187
    out_path.replace_extension(".irs");
188
188
189
    boost::filesystem::copy_file(p, out_path, boost::filesystem::copy_option::overwrite_if_exists);
189
    boost::filesystem::copy_file(p, out_path, boost::filesystem::copy_options::overwrite_existing);
190
190
191
    util::debug(log_tag + "imported irs file to: " + out_path.string());
191
    util::debug(log_tag + "imported irs file to: " + out_path.string());
192
  } else {
192
  } else {
(-)easyeffects-4.8.7-orig/src/presets_manager.cpp (-1 / +1 lines)
Lines 472-478 Link Here
472
472
473
      out_path = user_dir / p.filename();
473
      out_path = user_dir / p.filename();
474
474
475
      boost::filesystem::copy_file(p, out_path, boost::filesystem::copy_option::overwrite_if_exists);
475
      boost::filesystem::copy_file(p, out_path, boost::filesystem::copy_options::overwrite_existing);
476
476
477
      util::debug(log_tag + "imported preset to: " + out_path.string());
477
      util::debug(log_tag + "imported preset to: " + out_path.string());
478
    }
478
    }

Return to bug 932322