From 0064ee6ab2e01a6a6ba4f9a5c492336ddfd358f7 Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Tue, 19 Jan 2016 15:55:56 -0800 Subject: [PATCH] try again to make this thread safe --- libraries/entities/src/EntityTree.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/entities/src/EntityTree.h b/libraries/entities/src/EntityTree.h index cf62baf808..63bd53120f 100644 --- a/libraries/entities/src/EntityTree.h +++ b/libraries/entities/src/EntityTree.h @@ -237,8 +237,8 @@ public: } // these are used to call through to EntityItems - int getJointIndex(const QUuid& entityID, const QString& name) const; - QStringList getJointNames(const QUuid& entityID) const; + Q_INVOKABLE int getJointIndex(const QUuid& entityID, const QString& name) const; + Q_INVOKABLE QStringList getJointNames(const QUuid& entityID) const; public slots: void callLoader(EntityItemID entityID);