Browse Source

Minor readability fix.

merge-requests/365/head
eidheim 10 years ago
parent
commit
3339ecbc86
  1. 2
      src/directories.cc

2
src/directories.cc

@ -227,7 +227,7 @@ void Directories::add_path(const boost::filesystem::path& dir_path, const Gtk::T
not_deleted.emplace(filename);
child->set_value(column_record.name, filename);
child->set_value(column_record.path, it->path().string());
if (boost::filesystem::is_directory(*it)) {
if (boost::filesystem::is_directory(it->path())) {
child->set_value(column_record.id, "a"+filename);
auto grandchild=tree_store->append(child->children());
grandchild->set_value(column_record.name, std::string("(empty)"));

Loading…
Cancel
Save