Use get_parse_name() in rtgui/dirbrowser.cc (#3444)

This will print the full path and is consistent with the gtk3 branch.
This commit is contained in:
Flössie 2016-10-04 20:36:28 +02:00
parent 1c9b84aadb
commit 162c65e696

View File

@ -59,7 +59,7 @@ std::vector<Glib::ustring> listSubDirs (const Glib::RefPtr<Gio::File>& dir, bool
} catch (const Glib::Exception& exception) { } catch (const Glib::Exception& exception) {
if (options.rtSettings.verbose) { if (options.rtSettings.verbose) {
std::cerr << "Failed to list subdirectories of \"" << dir->get_basename() << "\": " << exception.what () << std::endl; std::cerr << "Failed to list subdirectories of \"" << dir->get_parse_name() << "\": " << exception.what () << std::endl;
} }
} }