summaryrefslogtreecommitdiffstats
path: root/modules/mono/editor/monodevelop_instance.cpp
diff options
context:
space:
mode:
authorIgnacio Etcheverry <ignalfonsore@gmail.com>2018-01-04 21:05:46 +0100
committerIgnacio Etcheverry <ignalfonsore@gmail.com>2018-01-04 21:16:22 +0100
commit119a910bc6b7472f014773997bc036a461b44a38 (patch)
treed193775b802124cc79fae0ead86c2b1800f77c79 /modules/mono/editor/monodevelop_instance.cpp
parentf9f6f250e68853dc0b3ab397145b8c060e1cb110 (diff)
downloadredot-engine-119a910bc6b7472f014773997bc036a461b44a38.tar.gz
Mono: Add properties support in scripts
Diffstat (limited to 'modules/mono/editor/monodevelop_instance.cpp')
-rw-r--r--modules/mono/editor/monodevelop_instance.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/monodevelop_instance.cpp b/modules/mono/editor/monodevelop_instance.cpp
index 57b3382bff..8dc308b113 100644
--- a/modules/mono/editor/monodevelop_instance.cpp
+++ b/modules/mono/editor/monodevelop_instance.cpp
@@ -62,7 +62,7 @@ MonoDevelopInstance::MonoDevelopInstance(const String &p_solution) {
GDMonoClass *klass = GDMono::get_singleton()->get_editor_tools_assembly()->get_class("GodotSharpTools.Editor", "MonoDevelopInstance");
- MonoObject *obj = mono_object_new(TOOLS_DOMAIN, klass->get_raw());
+ MonoObject *obj = mono_object_new(TOOLS_DOMAIN, klass->get_mono_ptr());
GDMonoMethod *ctor = klass->get_method(".ctor", 1);
MonoObject *ex = NULL;