#include <ngscan.h>
Inheritance diagram for ApplyScan::ApplyItems:
Public Member Functions | |
ApplyItems (Node *pNode, UndoableOperation *pOp) | |
Protected Member Functions | |
virtual BOOL | Do (SGNameItem *) |
Applies the Wix ObjectName attributes that apply to objects. |
Definition at line 288 of file ngscan.h.
|
Definition at line 793 of file ngscan.cpp. 00794 : NameIterOp(pNode, pOp) 00795 { 00796 // Empty. 00797 }
|
|
Applies the Wix ObjectName attributes that apply to objects.
Implements NameItemIter. Definition at line 811 of file ngscan.cpp. 00812 { 00813 // If the object is already a member of the item's set then ignore it. 00814 if (pItem->IsMember(m_pNode)) return TRUE; 00815 00816 // Extract the name from the item and apply it. 00817 String_256 strName; 00818 pItem->GetNameText(&strName); 00819 return ApplyNameToNode(strName, m_pNode, m_pOp, pItem->m_BarNumber); 00820 }
|