summaryrefslogtreecommitdiffstats
path: root/lib/kross/api/proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kross/api/proxy.h')
-rw-r--r--lib/kross/api/proxy.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/kross/api/proxy.h b/lib/kross/api/proxy.h
index a7d37380..1e0f3850 100644
--- a/lib/kross/api/proxy.h
+++ b/lib/kross/api/proxy.h
@@ -111,13 +111,13 @@ namespace Kross { namespace Api {
const METHOD m_method;
/// First default argument.
- KSharedPtr<ARG1OBJ> m_defarg1;
+ TDESharedPtr<ARG1OBJ> m_defarg1;
/// Second default argument.
- KSharedPtr<ARG2OBJ> m_defarg2;
+ TDESharedPtr<ARG2OBJ> m_defarg2;
/// Theird default argument.
- KSharedPtr<ARG3OBJ> m_defarg3;
+ TDESharedPtr<ARG3OBJ> m_defarg3;
/// Forth default argument.
- KSharedPtr<ARG4OBJ> m_defarg4;
+ TDESharedPtr<ARG4OBJ> m_defarg4;
/**
* \internal used struct that does the execution of the wrapped
@@ -187,9 +187,9 @@ namespace Kross { namespace Api {
private:
INSTANCE* m_instance;
const METHOD m_method;
- KSharedPtr<ARG1OBJ> m_defarg1;
- KSharedPtr<ARG2OBJ> m_defarg2;
- KSharedPtr<ARG3OBJ> m_defarg3;
+ TDESharedPtr<ARG1OBJ> m_defarg1;
+ TDESharedPtr<ARG2OBJ> m_defarg2;
+ TDESharedPtr<ARG3OBJ> m_defarg3;
template<class PROXYFUNC, typename RETURNTYPE>
struct ProxyFunctionCaller {
@@ -229,8 +229,8 @@ namespace Kross { namespace Api {
private:
INSTANCE* m_instance;
const METHOD m_method;
- KSharedPtr<ARG1OBJ> m_defarg1;
- KSharedPtr<ARG2OBJ> m_defarg2;
+ TDESharedPtr<ARG1OBJ> m_defarg1;
+ TDESharedPtr<ARG2OBJ> m_defarg2;
template<class PROXYFUNC, typename RETURNTYPE>
struct ProxyFunctionCaller {
@@ -270,7 +270,7 @@ namespace Kross { namespace Api {
private:
INSTANCE* m_instance;
const METHOD m_method;
- KSharedPtr<ARG1OBJ> m_defarg1;
+ TDESharedPtr<ARG1OBJ> m_defarg1;
template<class PROXYFUNC, typename RETURNTYPE>
struct ProxyFunctionCaller {