diff options
Diffstat (limited to 'src/core/managed/Manager.cpp')
-rw-r--r-- | src/core/managed/Manager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<EventHandlerDescriptor>{}; // 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<uintptr_t>(e.first); - const RttiType &typeTar = e.first->type(); + const Rtti &typeTar = e.first->type(); // Get some information about the edge std::string port = ""; |