diff options
Diffstat (limited to 'src/event.cpp')
-rw-r--r-- | src/event.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event.cpp b/src/event.cpp index 7eaf8aea6..9d27a081a 100644 --- a/src/event.cpp +++ b/src/event.cpp @@ -37,7 +37,7 @@ Event::~Event() while (it != mData.end()) { delete it->second; - it->second = 0; + it->second = nullptr; ++it; } } |