Hi,
I am using version 1.8 of B4A.
when I declare a function like: mySub (x, y As Int), code completion shows "mySub(x as String, y as Int)" where it should show "mySub(x As Int, y as Int)
Changing the declaration to "mySub(x as Int, y as Int)" shows the expected result ...
Not a big problem but it has caused some issues because I passed parameters as strings (forgetting what the actual parameter type should be and relying on code completion) where an int is expected :BangHead: ...
I am using version 1.8 of B4A.
when I declare a function like: mySub (x, y As Int), code completion shows "mySub(x as String, y as Int)" where it should show "mySub(x As Int, y as Int)
Changing the declaration to "mySub(x as Int, y as Int)" shows the expected result ...
Not a big problem but it has caused some issues because I passed parameters as strings (forgetting what the actual parameter type should be and relying on code completion) where an int is expected :BangHead: ...