1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-02 03:50:36 +00:00

Nooooow it seems proper.

This commit is contained in:
Fellippe Heitor 2021-07-16 12:11:41 -03:00
parent 8d29964587
commit 88e2a1fa83

View file

@ -18375,12 +18375,12 @@ FUNCTION findid& (n2$)
IF t AND ISUDT THEN
manageVariableList "", scope$ + "UDT_" + RTRIM$(id.n), 4
ELSE
'n$ = id2shorttypename$
'IF LEFT$(n$, 1) = "_" THEN
' manageVariableList "", scope$ + MID$(n$, 2) + "_" + RTRIM$(id.n), 5
'ELSE
' manageVariableList "", scope$ + n$ + "_" + RTRIM$(id.n), 6
'END IF
n$ = id2shorttypename$
IF LEFT$(n$, 1) = "_" THEN
'manageVariableList "", scope$ + MID$(n$, 2) + "_" + RTRIM$(id.n), 5
ELSE
manageVariableList "", scope$ + n$ + "_" + RTRIM$(id.n), 6
END IF
END IF
END IF
END IF