diff --git a/libs/ui/include/psemek/ui/impl/component_factory_base.hpp b/libs/ui/include/psemek/ui/impl/component_factory_base.hpp index 1d6d24cc..95bb76e1 100644 --- a/libs/ui/include/psemek/ui/impl/component_factory_base.hpp +++ b/libs/ui/include/psemek/ui/impl/component_factory_base.hpp @@ -20,7 +20,7 @@ namespace psemek::ui::impl : util::exception { component_not_supported_exception(std::type_index type, boost::stacktrace::stacktrace stacktrace = {}) - : util::exception(util::to_string("UI component ", util::type_name(type_), " is not supported"), std::move(stacktrace)) + : util::exception(util::to_string("UI component ", util::type_name(type), " is not supported"), std::move(stacktrace)) , type_(type) {}