void GuiButtonBaseCtrl::setTextID(S32 id)
{
	const UTF8 *str = getGUIString(id);
	if(str)
		setText((const char*)str);
	//mButtonTextID = id;
}
示例#2
0
void GuiPaneControl::setCaptionID(S32 id)
{
	mCaption = getGUIString(id);
}