basic_data.hpp is now a real interface.

This commit is contained in:
Pcornat 2026-01-06 23:11:21 +01:00
commit 48fc8faa1a
Signed by: Pcornat
GPG key ID: E0326CC678A00BDD
2 changed files with 2 additions and 2 deletions

View file

@ -78,7 +78,7 @@ namespace gui {
}
void Window::add_module(data::BasicData &module) {
modules.emplace(module.name, &module);
modules.emplace(module.get_name(), &module);
}
void Window::delete_module(const std::string &module) {