CCControlButton::setTitleTTFForState - Hardcoded font size

void CCControlButton::setTitleTTFForState(const char * fntFile, CCControlState state)
{
CCString * title = this~~>getTitleForState;
if
{
title = CCString::create;
}
this~~>setTitleLabelForState(CCLabelTTF::create(title~~>getCString, fntFile, 12), state); // ??
}
The font size is hardcoded to 12. Shouldn’t it be
this~~>setTitleLabelForState(CCLabelTTF::create(title~~>getCString, fntFile, this~~>getTitleTTFSizeForState(state)), state); ?