]> git.tdb.fi Git - libs/datafile.git/commitdiff
Invoke creators from get_list
authorMikko Rasa <tdb@tdb.fi>
Sat, 12 Oct 2013 15:55:33 +0000 (18:55 +0300)
committerMikko Rasa <tdb@tdb.fi>
Sat, 12 Oct 2013 15:55:33 +0000 (18:55 +0300)
source/collection.cpp

index 165b77007fce815eac0b4498d58950895ca1706d..65b4d5a3914192192f2092425e686b7d8ee56576 100644 (file)
@@ -121,7 +121,16 @@ void Collection::load_items_from_sources(const CollectionItemTypeBase &type)
                std::list<std::string> available_names = (*i)->get_names(type);
                for(std::list<std::string>::iterator j=available_names.begin(); j!=available_names.end(); ++j)
                        if(!items.count(*j))
-                               (*i)->load(*this, type, *j);
+                       {
+                               bool loaded = false;
+                               if(type.can_create())
+                               {
+                                       type.create_item(*this, *j);
+                                       loaded = items.count(*j);
+                               }
+                               if(!loaded)
+                                       (*i)->load(*this, type, *j);
+                       }
        }
 }