Gtk3 by Hombre, issue 2807

This commit is contained in:
Morgan Hardwood
2015-08-12 16:07:19 +02:00
parent 91f67f0cb6
commit 56a0805bc7
133 changed files with 3950 additions and 2626 deletions

View File

@@ -213,7 +213,7 @@ void FilterPanel::setFilter (ExifFilterSettings& defefs, bool updateLists)
curefs.expcomp.clear();
for (std::set<std::string>::iterator i = defefs.expcomp.begin(); i != defefs.expcomp.end(); i++) {
expcomp->append_text (*i);
expcomp->append (*i);
curefs.expcomp.insert(*i);
}
@@ -223,7 +223,7 @@ void FilterPanel::setFilter (ExifFilterSettings& defefs, bool updateLists)
curefs.lenses.clear();
for (std::set<std::string>::iterator i = defefs.lenses.begin(); i != defefs.lenses.end(); i++) {
lens->append_text (*i);
lens->append (*i);
curefs.lenses.insert(*i);
}
@@ -233,7 +233,7 @@ void FilterPanel::setFilter (ExifFilterSettings& defefs, bool updateLists)
curefs.cameras.clear();
for (std::set<std::string>::iterator i = defefs.cameras.begin(); i != defefs.cameras.end(); i++) {
camera->append_text(*i);
camera->append(*i);
curefs.cameras.insert(*i);
}
@@ -243,7 +243,7 @@ void FilterPanel::setFilter (ExifFilterSettings& defefs, bool updateLists)
curefs.filetypes.clear();
for (std::set<std::string>::iterator i = defefs.filetypes.begin(); i != defefs.filetypes.end(); i++) {
filetype->append_text(*i);
filetype->append(*i);
curefs.filetypes.insert(*i);
}