bug fix [ 1659190 ] Form Help shows null when there is no help
This commit is contained in:
parent
7618483385
commit
a82fd8bd6b
|
@ -275,8 +275,10 @@ public class FormFrame extends CFrame
|
||||||
private void actionHelp()
|
private void actionHelp()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuffer sb = new StringBuffer();
|
||||||
sb.append("<h2>").append(m_Description).append("</h2><p>")
|
if (m_Description != null && m_Description.length() > 0)
|
||||||
.append(m_Help);
|
sb.append("<h2>").append(m_Description).append("</h2>");
|
||||||
|
if (m_Help != null && m_Help.length() > 0)
|
||||||
|
sb.append("<p>").append(m_Help);
|
||||||
Help hlp = new Help (Env.getFrame(this), this.getTitle(), sb.toString());
|
Help hlp = new Help (Env.getFrame(this), this.getTitle(), sb.toString());
|
||||||
hlp.setVisible(true);
|
hlp.setVisible(true);
|
||||||
} // actionHelp
|
} // actionHelp
|
||||||
|
|
Loading…
Reference in New Issue