]> vaikene.ee Git - evaf/blobdiff - src/libs/Common/event.h
Mac OS changes and switched to c++11.
[evaf] / src / libs / Common / event.h
index 960b53e05db0c69d1c8656bf0f022b2d6e02b68f..44396c1af7bd00dd04982b5a2dd3a6d8eb11da35 100644 (file)
@@ -3,7 +3,7 @@
  * @brief Base class for all the events
  * @author Enar Vaikene
  *
- * Copyright (c) 2011 Enar Vaikene
+ * Copyright (c) 2011-2019 Enar Vaikene
  *
  * This file is part of the eVaf C++ cross-platform application development framework.
  *
@@ -58,7 +58,7 @@ public:
      * is decreased by 1 when the event object is destroyed.  If nobody else claimed the ownership, then
      * the shared data object is destroyed too.
      */
-    Event(uint eventId, quint32 intValue = 0, QSharedData * dataObj = 0)
+    Event(uint eventId, quint32 intValue = 0, QSharedData * dataObj = nullptr)
         : QEvent(eVafEvent)
         , mId(eventId)
         , mValue(intValue)
@@ -82,7 +82,7 @@ public:
      * is finished, the event and shared data attached to it are destroyed. To keep the shared
      * data object, use QExplicitlySharedDataPointer<> to claim ownership.
      */
-    inline QSharedData * data() const { return mData ? mData.data() : 0; }
+    inline QSharedData * data() const { return mData != nullptr ? mData.data() : nullptr; }
 
 
 private: