Fix the broken build for JavaScript plugin
[platform/core/uifw/dali-toolkit.git] / plugins / dali-script-v8 / src / rendering / texture-set-wrapper.cpp
index 454c966..5f503ec 100644 (file)
@@ -45,7 +45,6 @@ const ApiFunction TextureSetFunctionTable[]=
     * TextureSet API (in order of texture-set.h)
     **************************************/
 
-   { "SetImage"                        , TextureSetApi::SetImage },
    { "SetSampler"                      , TextureSetApi::SetSampler },
 };
 
@@ -54,7 +53,7 @@ const unsigned int TextureSetFunctionTableCount = sizeof(TextureSetFunctionTable
 
 
 TextureSetWrapper::TextureSetWrapper( const Dali::TextureSet& textureSet, GarbageCollectorInterface& gc )
-:  HandleWrapper(  BaseWrappedObject::TEXTURE_SET , textureSet, gc )
+:  BaseWrappedObject(  BaseWrappedObject::TEXTURE_SET, gc )
 {
     mTextureSet = textureSet;
 }
@@ -102,9 +101,6 @@ v8::Handle<v8::ObjectTemplate> TextureSetWrapper::MakeTextureSetTemplate( v8::Is
 
   v8::Local<v8::ObjectTemplate> objTemplate = v8::ObjectTemplate::New();
 
-  // property handle intercepts property getters and setters and signals
-  HandleWrapper::AddInterceptsToTemplate( isolate, objTemplate );
-
   objTemplate->SetInternalFieldCount( BaseWrappedObject::FIELD_COUNT );
 
   // add our function properties