summaryrefslogtreecommitdiffstats
path: root/engine/flatcomponent.cpp
diff options
context:
space:
mode:
authorancarola <raffaele.ancarola@epfl.ch>2019-01-22 01:56:51 +0100
committerancarola <raffaele.ancarola@epfl.ch>2019-01-22 01:56:51 +0100
commit844926711489c4f87c68ceab3ea245161228ad78 (patch)
tree2d983c826131b33a207db83f95e365b044227dad /engine/flatcomponent.cpp
parentSignal change (diff)
downloadflatland-844926711489c4f87c68ceab3ea245161228ad78.tar.gz
flatland-844926711489c4f87c68ceab3ea245161228ad78.zip
Fin qui tutto bene
Diffstat (limited to 'engine/flatcomponent.cpp')
-rw-r--r--engine/flatcomponent.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/flatcomponent.cpp b/engine/flatcomponent.cpp
index 33cfbbc..06b558c 100644
--- a/engine/flatcomponent.cpp
+++ b/engine/flatcomponent.cpp
@@ -1,5 +1,5 @@
#include "flatcomponent.h"
-#include "flatsignal.h"
+#include "signal.h"
Component::Component(Component *parent, const std::string& id)
: parent(parent)
@@ -7,7 +7,7 @@ Component::Component(Component *parent, const std::string& id)
// TODO, check flatland initialization
if (id.empty())
- setID(FlatObject::randomID());
+ setID(flat::core::object::randomID());
if (parent == 0)
{