Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-08-12 04:04:21 +0300
committerCampbell Barton <campbell@blender.org>2022-08-12 04:04:21 +0300
commitd99ec7ff9e6f3e3954ad05aa4bf190aae10656d4 (patch)
tree1f2b04b1970d411a09eba7f865c6a9521f90cc10 /intern/ghost/intern/GHOST_Event.h
parent75c5b21a1c93cf595da7daaffadb1f0c58ee04d5 (diff)
Cleanup: clang-tidy GHOST Context/Event/TimerManager
Diffstat (limited to 'intern/ghost/intern/GHOST_Event.h')
-rw-r--r--intern/ghost/intern/GHOST_Event.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_Event.h b/intern/ghost/intern/GHOST_Event.h
index 0813378a819..1e1c428e2ae 100644
--- a/intern/ghost/intern/GHOST_Event.h
+++ b/intern/ghost/intern/GHOST_Event.h
@@ -22,7 +22,7 @@ class GHOST_Event : public GHOST_IEvent {
* \param window: The generating window (or NULL if system event).
*/
GHOST_Event(uint64_t msec, GHOST_TEventType type, GHOST_IWindow *window)
- : m_type(type), m_time(msec), m_window(window), m_data(NULL)
+ : m_type(type), m_time(msec), m_window(window), m_data(nullptr)
{
}