mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
parent
a0559ee680
commit
53eb29fef8
1 changed files with 6 additions and 3 deletions
|
@ -998,11 +998,14 @@ namespace NLGUI
|
|||
std::vector<CInterfaceLink::CTargetInfo> targets;
|
||||
|
||||
ptr = (char*) xmlGetProp (cur, (xmlChar*)"target");
|
||||
std::string target = ptr;
|
||||
if( ( ptr != NULL ) && !editorMode )
|
||||
std::string target;
|
||||
if( ptr != NULL )
|
||||
{
|
||||
CInterfaceLink::splitLinkTargets(std::string((const char*)ptr), parentGroup, targets);
|
||||
target = std::string( ptr );
|
||||
if( !editorMode )
|
||||
CInterfaceLink::splitLinkTargets(std::string((const char*)ptr), parentGroup, targets);
|
||||
}
|
||||
|
||||
// optional action handler
|
||||
std::string action;
|
||||
std::string params;
|
||||
|
|
Loading…
Reference in a new issue