From 7df5f30494b7da283164717dea9098c8d9dca77a Mon Sep 17 00:00:00 2001 From: Andreas Stöckel Date: Sun, 11 Jan 2015 13:23:26 +0100 Subject: Renamed RttiBase to RttiType --- src/core/managed/Manager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/managed/Manager.cpp') diff --git a/src/core/managed/Manager.cpp b/src/core/managed/Manager.cpp index 3950ce2..c6b162b 100644 --- a/src/core/managed/Manager.cpp +++ b/src/core/managed/Manager.cpp @@ -593,7 +593,7 @@ void Manager::exportGraphviz(const char *filename) : std::vector{}; // Read type information and Node name (if available) - const RttiBase &type = objectPtr->type(); + const RttiType &type = objectPtr->type(); const std::string &typeName = type.name; std::string name = ""; if (type.isa(RttiTypes::Node)) { @@ -661,7 +661,7 @@ void Manager::exportGraphviz(const char *filename) while (edgeCount > 0) { // Get the type of the target element uintptr_t pTar = reinterpret_cast(e.first); - const RttiBase &typeTar = e.first->type(); + const RttiType &typeTar = e.first->type(); // Get some information about the edge std::string port = ""; -- cgit v1.2.3