From 66382c62af1be515deff66d51dba7f27e5fe4937 Mon Sep 17 00:00:00 2001 From: Andreas Stöckel Date: Sun, 18 Jan 2015 18:41:30 +0100 Subject: Renamed RttiType to Rtti --- 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 c6d7f93..212aa9d 100644 --- a/src/core/managed/Manager.cpp +++ b/src/core/managed/Manager.cpp @@ -592,7 +592,7 @@ void Manager::exportGraphviz(const char *filename) : std::vector{}; // Read type information and Node name (if available) - const RttiType &type = objectPtr->type(); + const Rtti &type = objectPtr->type(); const std::string &typeName = type.name; // Fetch the name of the object if the object has a "name" property @@ -659,7 +659,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 RttiType &typeTar = e.first->type(); + const Rtti &typeTar = e.first->type(); // Get some information about the edge std::string port = ""; -- cgit v1.2.3