Author: ygrego Date: 2015-01-29 14:11:59 +0000 (Thu, 29 Jan 2015) New Revision: 744 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/744 Log: Adding of missing element "this". Modified: oipf/js/impl/OipfObjectFactory.js Modified: oipf/js/impl/OipfObjectFactory.js =================================================================== --- oipf/js/impl/OipfObjectFactory.js 2015-01-29 14:08:53 UTC (rev 743) +++ oipf/js/impl/OipfObjectFactory.js 2015-01-29 14:11:59 UTC (rev 744) @@ -114,7 +114,7 @@ createCodManagerObject: function() { console.log("[INFO] createCodManagerObject() of OipfObjectFactory class called."); - return verifOipfObjectExisting(codManager_dae_mime_type); + return this.verifOipfObjectExisting(codManager_dae_mime_type); }, /*! @@ -124,7 +124,7 @@ createConfigurationObject: function() { console.log("[INFO] createConfigurationObject() of OipfObjectFactory class called."); - return verifOipfObjectExisting(configuration_dae_mime_type); + return this.verifOipfObjectExisting(configuration_dae_mime_type); }, /*! @@ -134,7 +134,7 @@ createDownloadManagerObject: function() { console.log("[INFO] createDownloadManagerObject() of OipfObjectFactory class called."); - return verifOipfObjectExisting(downloadManager_dae_mime_type); + return this.verifOipfObjectExisting(downloadManager_dae_mime_type); }, /*! @@ -144,7 +144,7 @@ createDownloadTriggerObject: function() { console.log("[INFO] createDownloadTriggerObject() of OipfObjectFactory class called."); - return verifOipfObjectExisting(downloadTrigger_dae_mime_type); + return this.verifOipfObjectExisting(downloadTrigger_dae_mime_type); }, /*! @@ -154,7 +154,7 @@ createDrmAgentObject: function() { console.log("[INFO] createDrmAgentObject() of OipfObjectFactory class called."); - return verifOipfObjectExisting(drmAgent_dae_mime_type); + return this.verifOipfObjectExisting(drmAgent_dae_mime_type); }, /*! @@ -164,7 +164,7 @@ createGatewayInfoObject: function() { console.log("[INFO] createGatewayInfoObject() of OipfObjectFactory class called."); - return verifOipfObjectExisting(gatewayInfo_dae_mime_type); + return this.verifOipfObjectExisting(gatewayInfo_dae_mime_type); }, /*! @@ -174,7 +174,7 @@ createIMSObject: function() { console.log("[INFO] createIMSObject() of OipfObjectFactory class called."); - return verifOipfObjectExisting(ims_dae_mime_type); + return this.verifOipfObjectExisting(ims_dae_mime_type); }, /*! @@ -184,7 +184,7 @@ createMDTFObject: function() { console.log("[INFO] createMDTFObject() of OipfObjectFactory class called."); - return verifOipfObjectExisting(mdtf_dae_mime_type); + return this.verifOipfObjectExisting(mdtf_dae_mime_type); }, /*! @@ -194,7 +194,7 @@ createNotifSocketObject: function() { console.log("[INFO] createNotifSocketObject() of OipfObjectFactory class called."); - return verifOipfObjectExisting(notifSocket_dae_mime_type); + return this.verifOipfObjectExisting(notifSocket_dae_mime_type); }, /*! @@ -204,7 +204,7 @@ createParentalControlManagerObject: function() { console.log("[INFO] createParentalControlManangerObject() of OipfObjectFactory class called."); - return verifOipfObjectExisting(parentalControlManager_dae_mime_type); + return this.verifOipfObjectExisting(parentalControlManager_dae_mime_type); }, /*! @@ -214,7 +214,7 @@ createRecordingSchedulerObject: function() { console.log("[INFO] createRecordingSchedulerObject() of OipfObjectFactory class called."); - return verifOipfObjectExisting(recordingScheduler_dae_mime_type); + return this.verifOipfObjectExisting(recordingScheduler_dae_mime_type); }, /*! @@ -224,7 +224,7 @@ createRemoteControlFunctionObject: function() { console.log("[INFO] createRemoteControlFunctionObject() of OipfObjectFactory class called."); - return verifOipfObjectExisting(remoteControlFunction_dae_mime_type); + return this.verifOipfObjectExisting(remoteControlFunction_dae_mime_type); }, /*! @@ -234,7 +234,7 @@ createRemoteManagementObject: function() { console.log("[INFO] createRemoteManagementObject() of OipfObjectFactory class called."); - return verifOipfObjectExisting(remoteManagement_dae_mime_type); + return this.verifOipfObjectExisting(remoteManagement_dae_mime_type); }, createStatusViewObject: function() {