Various little fixes (#118)
* Add missing override qualifier * Mostly shadowing, virtual destructor and other little things
This commit is contained in:
committed by
Jérôme Leclercq
parent
ee9712fdcd
commit
c2e4ccaf72
@@ -53,9 +53,9 @@ void EventState::AddEvent(const Nz::WindowEvent& event)
|
||||
m_events.push_back(Nz::String::Number(m_count) + " - " + ToString(event));
|
||||
|
||||
Nz::String content;
|
||||
for (auto&& event : m_events)
|
||||
for (auto&& currentEvent : m_events)
|
||||
{
|
||||
content += event + "\n";
|
||||
content += currentEvent + "\n";
|
||||
}
|
||||
content += "\nM for Menu";
|
||||
m_text.SetContent(content, 36);
|
||||
|
||||
Reference in New Issue
Block a user