Memory pool vectors (DVector) have been enormously simplified in code, and renamed to PoolVector

This commit is contained in:
Juan Linietsky 2017-01-07 18:25:37 -03:00
parent 2a38a5eaa8
commit 2ab83e1abb
257 changed files with 2818 additions and 3130 deletions

View file

@ -66,7 +66,7 @@ void SampleLibraryEditor::_notification(int p_what) {
}
}
void SampleLibraryEditor::_file_load_request(const DVector<String>& p_path) {
void SampleLibraryEditor::_file_load_request(const PoolVector<String>& p_path) {
for(int i=0;i<p_path.size();i++) {
@ -400,7 +400,7 @@ void SampleLibraryEditor::drop_data_fw(const Point2& p_point,const Variant& p_da
if (String(d["type"])=="files") {
DVector<String> files = d["files"];
PoolVector<String> files = d["files"];
_file_load_request(files);