I did lot of clean up with the warning system, however some of them do not make sense to me.
Unused variable for startX, startY and lastX??? It is in the Panels_Touch event
Can we have a feature to dismiss some of the unnecessary warning such as files attached. I have over 30 fonts and the whole log screen is filled up with this warning message "File is not used". But it is used but not shown in the coding.
Here is another one
Subtitle is CharSequence, but you can pass string to it, also?
I will see if I can spot anymore. Good job, Erel.
Unused variable for startX, startY and lastX??? It is in the Panels_Touch event
B4X:
Sub Globals
Dim startX, startY, lastX As Float
B4X:
Sub Panels_Touch (Action As Int, X As Float, Y As Float)
Select Action
Case Activity.ACTION_DOWN
startX = X
lastX = Round(X)
startY = Y
Can we have a feature to dismiss some of the unnecessary warning such as files attached. I have over 30 fonts and the whole log screen is filled up with this warning message "File is not used". But it is used but not shown in the coding.
Here is another one
B4X:
ab.SubTitle = "Profile: " & tmpName
Subtitle is CharSequence, but you can pass string to it, also?
I will see if I can spot anymore. Good job, Erel.
Last edited: