Example #1
0
BOOL CReportCtrlEx::EndItem(BOOL bCommit)
{
	BOOL bRes;

	if (m_bEdit)
		bRes = EndEdit(bCommit);
	else
		bRes = EndCombo(bCommit);

	return bRes;
}
Example #2
0
void WrapperDLL::Tool_EndCombo(void* self){
	auto self_ = (Tool*)self;
	self_->EndCombo();
};