Beautifier - Use Special Case

Gustavo

Member³
Beautifier used to understand this:

Code:
GetItemAttrDate
GetItemAttrNumber
GetItemAttrText
SetItemAttrDate
SetItemAttrNumber
SetItemAttrText

In more recent builds, it understands this, instead:

Code:
wf_engine.GetItemAttrDate
wf_engine.GetItemAttrNumber
wf_engine.GetItemAttrText
wf_engine.SetItemAttrDate
wf_engine.SetItemAttrNumber
wf_engine.SetItemAttrText

Nevertheless, in my current version (11.0.5.1775), when I enter the text above it becomes:

Code:
wf_engine.GetItemAttrDate
wf_engine.GetItemAttrNu
mber
wf_engine.GetItemAttrText
wf_engine.SetItemAttrDate
wf_engine.SetItemAttrNum
ber
wf_engine.SetItemAttrText

After I save and check the content again, it looks like this:

Code:
ber
mber
wf_engine.GetItemAttrDate
wf_engine.GetItemAttrNu
wf_engine.GetItemAttrText
wf_engine.SetItemAttrDate
wf_engine.SetItemAttrNum
wf_engine.SetItemAttrText

Please, fix this. The wrapped text fails to format correctly, which generates new code version, when code should be the same.

Best regards,
Gustavo
 
This IS a complete example. :P

Just save this to the Special Case field. Leave the form and check back.

Code:
wf_engine.GetItemAttrDate
wf_engine.GetItemAttrNumber
wf_engine.GetItemAttrText
wf_engine.SetItemAttrDate
wf_engine.SetItemAttrNumber
wf_engine.SetItemAttrText
Regards,
Gustavo
 
Back
Top