Little Bug in ProcedureBrowser...

Working on new editor enhancements?
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by freak.

If You name a Procedure like this:

Procedure$ Whatever()
EndProcedure

It won't be displayed in the ProcedureBrowser.

That's all,

Timmo

--------------------------------
Programming today is a race between software engineers striving to build bigger and
better idiot-proof programs and the universe trying to produce bigger and better idiots.

...So far, the universe is winning.
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by PB.

Until Fred fixes this, just replace $ with .s like so:

Procedure.s Whatever()
EndProcedure

Using .s is probably a better idea anyway because it keeps it in line
with other procedure types (Procedure.l, Procedure.b, etc).
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by Hitman.

It either not working on my computer, mine OS is Win2K Build 2195 SP3.....

Well, everyone needs to do something for living.
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by freak.
Originally posted by PB

Until Fred fixes this, just replace $ with .s like so:

Procedure.s Whatever()
EndProcedure

Using .s is probably a better idea anyway because it keeps it in line
with other procedure types (Procedure.l, Procedure.b, etc).
I know, and personally, i don't like that $-thing. I just discovered this Bug when i was searching the Editor's own source, and couldn't find a procedure that had the $ in it.

Timo
Post Reply