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_Socket.h')
-rw-r--r--source/blender/compositor/intern/COM_Socket.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/compositor/intern/COM_Socket.h b/source/blender/compositor/intern/COM_Socket.h
index 3243a371cda..8ad7a5c7fde 100644
--- a/source/blender/compositor/intern/COM_Socket.h
+++ b/source/blender/compositor/intern/COM_Socket.h
@@ -49,7 +49,7 @@ private:
/**
* Reference to the node where this Socket belongs to
*/
- NodeBase* node;
+ NodeBase *node;
/**
* the datatype of this socket. Is used for automatically data transformation.
@@ -63,13 +63,13 @@ private:
*/
DataType actualType;
- bNodeSocket* editorSocket;
+ bNodeSocket *editorSocket;
public:
Socket(DataType datatype);
DataType getDataType() const;
- void setNode(NodeBase* node);
- NodeBase* getNode() const;
+ void setNode(NodeBase *node);
+ NodeBase *getNode() const;
/**
* @brief get the actual data type
@@ -91,8 +91,8 @@ public:
virtual void determineResolution(int resolution[], unsigned int preferredResolution[]) {}
virtual void determineActualDataType() {}
- void setEditorSocket(bNodeSocket* editorSocket) {this->editorSocket = editorSocket;}
- bNodeSocket* getbNodeSocket() const {return this->editorSocket;}
+ void setEditorSocket(bNodeSocket *editorSocket) {this->editorSocket = editorSocket;}
+ bNodeSocket *getbNodeSocket() const {return this->editorSocket;}
};