summaryrefslogtreecommitdiffstats
path: root/src/core/NodePath.cpp
diff options
context:
space:
mode:
authorKarroffel <therzog@mail.de>2017-05-23 23:03:57 +0200
committerKarroffel <therzog@mail.de>2017-05-23 23:03:57 +0200
commitad3720440e5fa36d09ba18609e132305bd9e6060 (patch)
tree147506ada3a8c91636191d910e1f9973016a6db6 /src/core/NodePath.cpp
parent9caeb8d29658cd4cc7bfa0b5983595e6b39f3bff (diff)
downloadredot-cpp-ad3720440e5fa36d09ba18609e132305bd9e6060.tar.gz
removed InputEvent and Image
Diffstat (limited to 'src/core/NodePath.cpp')
-rw-r--r--src/core/NodePath.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/NodePath.cpp b/src/core/NodePath.cpp
index e5e784b..08ec27a 100644
--- a/src/core/NodePath.cpp
+++ b/src/core/NodePath.cpp
@@ -17,7 +17,7 @@ NodePath::NodePath(const NodePath &other)
{
String from = other;
godot_node_path_new(&_node_path, (godot_string *) &from);
- godot_node_path_copy(&_node_path, &other._node_path);
+ godot_node_path_operator_equal(&_node_path, &other._node_path);
}
NodePath::NodePath(const String &from)
@@ -79,7 +79,7 @@ NodePath::operator String() const
void NodePath::operator =(const NodePath& other)
{
- godot_node_path_copy(&_node_path, &other._node_path);
+ godot_node_path_operator_equal(&_node_path, &other._node_path);
}
NodePath::~NodePath()