Example #1
0
/*********************************************************************\
	Function name    : CResEditBrowser::Message
	Description      :
	Created at       : 21.10.01, @ 17:23:02
	Created by       : Thomas Kunert
	Modified by      :
\*********************************************************************/
Int32 CResEditBrowser::Message(const BaseContainer &msg, BaseContainer &result)
{
	if (msg.GetId() == BFM_GETCURSORINFO && m_dirText.Content()) {
		result.SetId(msg.GetId());
		result.SetString(RESULT_BUBBLEHELP, "<b>Selected:</b> " + m_dirText.GetString());
		return true;
	}
	return GeDialog::Message(msg, result);
}