Skip to content

Commit f3315ae

Browse files
authored
Merge pull request #671 from bradc6/bugfix/ConsistentNamespace
2 parents f32d95b + 37938a1 commit f3315ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/godot_cpp/core/object.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
#include <vector>
4444

4545
#define ADD_SIGNAL(m_signal) ClassDB::add_signal(get_class_static(), m_signal)
46-
#define ADD_GROUP(m_name, m_prefix) ::ClassDB::add_property_group(get_class_static(), m_name, m_prefix)
47-
#define ADD_SUBGROUP(m_name, m_prefix) ::ClassDB::add_property_subgroup(get_class_static(), m_name, m_prefix)
46+
#define ADD_GROUP(m_name, m_prefix) ClassDB::add_property_group(get_class_static(), m_name, m_prefix)
47+
#define ADD_SUBGROUP(m_name, m_prefix) ClassDB::add_property_subgroup(get_class_static(), m_name, m_prefix)
4848
#define ADD_PROPERTY(m_property, m_setter, m_getter) ClassDB::add_property(get_class_static(), m_property, m_setter, m_getter)
4949

5050
namespace godot {

0 commit comments

Comments
 (0)