mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 22:21:18 +00:00
Memory pool vectors (DVector) have been enormously simplified in code, and renamed to PoolVector
This commit is contained in:
parent
2a38a5eaa8
commit
2ab83e1abb
257 changed files with 2818 additions and 3130 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue