diff --git a/Sources/Plasma/FeatureLib/pfPython/pyDniInfoSource.cpp b/Sources/Plasma/FeatureLib/pfPython/pyDniInfoSource.cpp index abdce7ee..5d3d9272 100644 --- a/Sources/Plasma/FeatureLib/pfPython/pyDniInfoSource.cpp +++ b/Sources/Plasma/FeatureLib/pfPython/pyDniInfoSource.cpp @@ -84,7 +84,7 @@ plString pyDniInfoSource::GetAgeName() const return ""; VaultAgeInfoNode ageInfo(node); - return ageInfo.GetAgeFilename(); + return ageInfo.GetAgeInstanceName(); } plUUID pyDniInfoSource::GetAgeGuid( void ) const diff --git a/Sources/Plasma/FeatureLib/pfPython/pyVaultAgeInfoNode.h b/Sources/Plasma/FeatureLib/pfPython/pyVaultAgeInfoNode.h index 49ef017b..d94dbbc4 100644 --- a/Sources/Plasma/FeatureLib/pfPython/pyVaultAgeInfoNode.h +++ b/Sources/Plasma/FeatureLib/pfPython/pyVaultAgeInfoNode.h @@ -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);