From 3e46ea68118a6b762369e5c8058be1879b9a74bb Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Fri, 2 Jan 2015 20:50:15 -0500 Subject: [PATCH] Fix issues from review --- Sources/Plasma/FeatureLib/pfPython/pyDniInfoSource.cpp | 2 +- Sources/Plasma/FeatureLib/pfPython/pyVaultAgeInfoNode.h | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) 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);