PoolVector is gone, replaced by Vector
Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector<Type>`.
This commit is contained in:
committed by
Juan Linietsky
parent
fb8c93c10b
commit
3205a92ad8
@ -189,9 +189,9 @@ void MIDIDriverALSAMidi::unlock() const {
|
||||
mutex->unlock();
|
||||
}
|
||||
|
||||
PoolStringArray MIDIDriverALSAMidi::get_connected_inputs() {
|
||||
PackedStringArray MIDIDriverALSAMidi::get_connected_inputs() {
|
||||
|
||||
PoolStringArray list;
|
||||
PackedStringArray list;
|
||||
|
||||
lock();
|
||||
for (int i = 0; i < connected_inputs.size(); i++) {
|
||||
|
||||
Reference in New Issue
Block a user