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:
Diffstat (limited to 'source/blender/compositor/intern/COM_SocketConnection.h')
-rw-r--r--source/blender/compositor/intern/COM_SocketConnection.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/source/blender/compositor/intern/COM_SocketConnection.h b/source/blender/compositor/intern/COM_SocketConnection.h
index 5385c5be49b..9777bd45be2 100644
--- a/source/blender/compositor/intern/COM_SocketConnection.h
+++ b/source/blender/compositor/intern/COM_SocketConnection.h
@@ -48,17 +48,17 @@ private:
/**
* @brief Startpoint of the connection
*/
- OutputSocket *fromSocket;
+ OutputSocket *m_fromSocket;
/**
* @brief Endpoint of the connection
*/
- InputSocket *toSocket;
+ InputSocket *m_toSocket;
/**
* @brief has the resize already been done for this connection
*/
- bool ignoreResizeCheck;
+ bool m_ignoreResizeCheck;
public:
SocketConnection();
@@ -104,12 +104,12 @@ public:
/**
* @brief set, whether the resize has already been done for this SocketConnection
*/
- void setIgnoreResizeCheck(bool check) { this->ignoreResizeCheck = check; }
+ void setIgnoreResizeCheck(bool check) { this->m_ignoreResizeCheck = check; }
/**
* @brief has the resize already been done for this SocketConnection
*/
- bool isIgnoreResizeCheck() const { return this->ignoreResizeCheck; }
+ bool isIgnoreResizeCheck() const { return this->m_ignoreResizeCheck; }
/**
* @brief does this SocketConnection need resolution conversion
@@ -118,6 +118,10 @@ public:
* @return needs conversion [true:false]
*/
bool needsResolutionConversion() const;
+
+#ifdef WITH_CXX_GUARDEDALLOC
+ MEM_CXX_CLASS_ALLOC_FUNCS("COM:SocketConnection")
+#endif
};
#endif