1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 19:29:09 +00:00

Fix issues from review

This commit is contained in:
2015-01-02 20:50:15 -05:00
parent 3b983bca8e
commit 3e46ea6811
2 changed files with 1 additions and 8 deletions

View File

@ -84,7 +84,7 @@ plString pyDniInfoSource::GetAgeName() const
return "";
VaultAgeInfoNode ageInfo(node);
return ageInfo.GetAgeFilename();
return ageInfo.GetAgeInstanceName();
}
plUUID pyDniInfoSource::GetAgeGuid( void ) const

View File

@ -61,13 +61,6 @@ class plUUID;
class pyVaultAgeInfoNode : public pyVaultNode
{
private:
mutable std::string fAgeFilename;
mutable std::string fAgeInstName;
mutable std::string fAgeUserName;
mutable std::string fAgeDispName;
mutable std::string fAgeDescription;
protected:
// should only be created from C++ side
pyVaultAgeInfoNode(RelVaultNode* vaultNode);