From 0bc136962658731bac3e9e1b23bd9677f4dea9de Mon Sep 17 00:00:00 2001 From: Relintai Date: Tue, 24 Mar 2020 17:42:45 +0100 Subject: [PATCH] Fix emitting a signal in PlayerProfile. --- profiles/player_profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/player_profile.cpp b/profiles/player_profile.cpp index 7385aa9..d0aaf6e 100644 --- a/profiles/player_profile.cpp +++ b/profiles/player_profile.cpp @@ -102,7 +102,7 @@ Ref PlayerProfile::get_class_profile(const int class_id) { _class_profiles.push_back(Ref(class_profile)); - emit_signal("changed"); + emit_change(); return class_profile; }