Merge pull request #471 from peace-maker/drawitem_returntag

Change Panel.DrawItem return tag to |int| (bug 6463)
This commit is contained in:
Kyle Sanderson 2016-01-22 09:45:29 -08:00
commit 52e3b580f3

View File

@ -176,7 +176,7 @@ methodmap Panel < Handle
// No numbering or newlines are needed.
// @param style ITEMDRAW style flags.
// @return A slot position, or 0 if item was a rawline or could not be drawn.
public native void DrawItem(const char[] text, style=ITEMDRAW_DEFAULT);
public native int DrawItem(const char[] text, style=ITEMDRAW_DEFAULT);
// Draws a raw line of text on a panel, without any markup other than a
// newline.