diff options
Diffstat (limited to 'engine/flatcomponent.cpp')
-rw-r--r-- | engine/flatcomponent.cpp | 4 |
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) { |