spacepaste

  1.  
  2. diff --git a/rtgui/options.cc b/rtgui/options.cc
  3. index fad4e975..4c08e22b 100644
  4. --- a/rtgui/options.cc
  5. +++ b/rtgui/options.cc
  6. @@ -118,11 +118,13 @@ void Options::updatePaths()
  7. }
  8. }
  9. } else {
  10. + std::cout << "profilePath: " << profilePath << std::endl;
  11. globalProfilePath = profilePath;
  12. }
  13. } else {
  14. tmpPath = Glib::build_filename (argv0, "profiles");
  15. + std::cout << "tmpPath1: " << tmpPath << std::endl;
  16. if (checkDirPath (tmpPath, "Error: the global's profiles' path doesn't point to a directory or doesn't exist!\n")) {
  17. globalProfilePath = tmpPath;
  18. }
  19. @@ -153,6 +155,7 @@ void Options::updatePaths()
  20. // common directory
  21. // directory name set in options is ignored, we use the default directory name
  22. tmpPath = Glib::build_filename (argv0, "profiles");
  23. + std::cout << "tmpPath2: " << tmpPath << std::endl;
  24. if (checkDirPath (tmpPath, "Error: no global profiles' directory found!\n")) {
  25. globalProfilePath = tmpPath;
  26. @@ -205,6 +208,7 @@ void Options::updatePaths()
  27. if (loadSaveProfilePath.empty() || !Glib::file_test (loadSaveProfilePath, Glib::FILE_TEST_EXISTS) || !Glib::file_test (loadSaveProfilePath, Glib::FILE_TEST_IS_DIR)) {
  28. loadSaveProfilePath = preferredPath;
  29. + std::cout << "loadSaveProfilePath: " << loadSaveProfilePath << std::endl;
  30. }
  31. if (lastBWCurvesDir.empty() || !Glib::file_test (lastBWCurvesDir, Glib::FILE_TEST_EXISTS) || !Glib::file_test (lastBWCurvesDir, Glib::FILE_TEST_IS_DIR)) {
  32.