I changed the name of a routine from (example):
to
since I realized that it is indeed a property.
In the project the call of that routine was obviously like:
now, after renamed the routine everywhere (automatically, using F7), it is:
This line should show a warning and stop compilation but this does not happen [despite the object shows correctly that Something is a property - wrench icon]
Instead, it happens by immediately writing the two things, the routine and the call, in the wrong way.
[already tried to clean the project]
B4X:
SetSomething(Value As Int)
B4X:
setSomething(Value As Int)
In the project the call of that routine was obviously like:
B4X:
MyObject.SetSomething(5)
B4X:
MyObject.setSomething(5)
Instead, it happens by immediately writing the two things, the routine and the call, in the wrong way.
[already tried to clean the project]
Last edited: