I think the relevant code you're looking for is in llviewermenu.cpp. At
around line 4275 you get this:

S32 object_count =
LLSelectMgr::getInstance()->getSelection()->getObjectCount();
if (object_count > MAX_CHILDREN_PER_TASK + 1)
{
    LLSD args;
    args["COUNT"] = llformat("%d", object_count);
    int max = MAX_CHILDREN_PER_TASK+1;
    args["MAX"] = llformat("%d", max);
    LLNotifications::instance().add("UnableToLinkObjects", args);
    return true;
}

And isn't object linking done with the ObjectLink message?

-arrogant
_______________________________________________
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/SLDev
Please read the policies before posting to keep unmoderated posting privileges

Reply via email to