diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-11 13:23:26 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-11 13:23:26 +0100 |
commit | 7df5f30494b7da283164717dea9098c8d9dca77a (patch) | |
tree | 8d967f3c47fc905b08ee7039b7549253f969703f /src/core/managed/Manager.cpp | |
parent | 3d6d42333a49e0a33a8cc4e1b8f890905a435a83 (diff) |
Renamed RttiBase to RttiType
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 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<EventHandlerDescriptor>{}; // 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<uintptr_t>(e.first); - const RttiBase &typeTar = e.first->type(); + const RttiType &typeTar = e.first->type(); // Get some information about the edge std::string port = ""; |