mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 11:19:10 +00:00
Remove TRACKED_NEW from tools.
This commit is contained in:
@ -53,7 +53,7 @@ class plAngleAttenLayerClassDesc : public ClassDesc2
|
||||
{
|
||||
public:
|
||||
int IsPublic() { return TRUE; }
|
||||
void* Create(BOOL loading = FALSE) { return TRACKED_NEW plAngleAttenLayer(); }
|
||||
void* Create(BOOL loading = FALSE) { return new plAngleAttenLayer(); }
|
||||
const TCHAR* ClassName() { return GetString(IDS_ANGLE_ATTEN_LAYER); }
|
||||
SClass_ID SuperClassID() { return TEXMAP_CLASS_ID; }
|
||||
Class_ID ClassID() { return ANGLE_ATTEN_LAYER_CLASS_ID; }
|
||||
@ -239,7 +239,7 @@ IParamBlock2* plAngleAttenLayer::GetParamBlockByID(BlockID id)
|
||||
//From ReferenceTarget
|
||||
RefTargetHandle plAngleAttenLayer::Clone(RemapDir &remap)
|
||||
{
|
||||
plAngleAttenLayer *mnew = TRACKED_NEW plAngleAttenLayer();
|
||||
plAngleAttenLayer *mnew = new plAngleAttenLayer();
|
||||
*((MtlBase*)mnew) = *((MtlBase*)this); // copy superclass stuff
|
||||
mnew->ReplaceReference(kRefAngles, remap.CloneRef(fParmsPB));
|
||||
BaseClone(this, mnew, remap);
|
||||
|
@ -72,7 +72,7 @@ class plDynamicEnvLayerClassDesc : public ClassDesc2
|
||||
{
|
||||
public:
|
||||
int IsPublic() { return TRUE; }
|
||||
void* Create(BOOL loading = FALSE) { return TRACKED_NEW plDynamicEnvLayer(); }
|
||||
void* Create(BOOL loading = FALSE) { return new plDynamicEnvLayer(); }
|
||||
const TCHAR* ClassName() { return GetString(IDS_DYNAMIC_ENVMAP_LAYER); }
|
||||
SClass_ID SuperClassID() { return TEXMAP_CLASS_ID; }
|
||||
Class_ID ClassID() { return DYNAMIC_ENV_LAYER_CLASS_ID; }
|
||||
@ -226,7 +226,7 @@ IParamBlock2 *plDynamicEnvLayer::GetParamBlockByID( BlockID id )
|
||||
|
||||
RefTargetHandle plDynamicEnvLayer::Clone( RemapDir &remap )
|
||||
{
|
||||
plDynamicEnvLayer *mnew = TRACKED_NEW plDynamicEnvLayer();
|
||||
plDynamicEnvLayer *mnew = new plDynamicEnvLayer();
|
||||
*((MtlBase*)mnew) = *((MtlBase*)this); // copy superclass stuff
|
||||
mnew->ReplaceReference(kRefBitmap, remap.CloneRef(fBitmapPB));
|
||||
mnew->ReplaceReference(kRefUVGen, remap.CloneRef(fUVGen));
|
||||
|
@ -53,7 +53,7 @@ class plDynamicTextLayerClassDesc : public ClassDesc2
|
||||
{
|
||||
public:
|
||||
int IsPublic() { return TRUE; }
|
||||
void* Create(BOOL loading = FALSE) { return TRACKED_NEW plDynamicTextLayer(); }
|
||||
void* Create(BOOL loading = FALSE) { return new plDynamicTextLayer(); }
|
||||
const TCHAR* ClassName() { return GetString(IDS_DYN_TEXT_LAYER); }
|
||||
SClass_ID SuperClassID() { return TEXMAP_CLASS_ID; }
|
||||
Class_ID ClassID() { return DYN_TEXT_LAYER_CLASS_ID; }
|
||||
@ -216,7 +216,7 @@ IParamBlock2* plDynamicTextLayer::GetParamBlockByID(BlockID id)
|
||||
//From ReferenceTarget
|
||||
RefTargetHandle plDynamicTextLayer::Clone(RemapDir &remap)
|
||||
{
|
||||
plDynamicTextLayer *mnew = TRACKED_NEW plDynamicTextLayer();
|
||||
plDynamicTextLayer *mnew = new plDynamicTextLayer();
|
||||
*((MtlBase*)mnew) = *((MtlBase*)this); // copy superclass stuff
|
||||
mnew->ReplaceReference(kRefBitmap, remap.CloneRef(fBitmapPB));
|
||||
mnew->ReplaceReference(kRefUVGen, remap.CloneRef(fUVGen));
|
||||
|
@ -55,7 +55,7 @@ class plLayerTexClassDesc : public ClassDesc2
|
||||
{
|
||||
public:
|
||||
int IsPublic() { return TRUE; }
|
||||
void* Create(BOOL loading = FALSE) { return TRACKED_NEW plLayerTex(); }
|
||||
void* Create(BOOL loading = FALSE) { return new plLayerTex(); }
|
||||
const TCHAR* ClassName() { return GetString(IDS_LAYER); }
|
||||
SClass_ID SuperClassID() { return TEXMAP_CLASS_ID; }
|
||||
Class_ID ClassID() { return LAYER_TEX_CLASS_ID; }
|
||||
@ -244,7 +244,7 @@ IParamBlock2* plLayerTex::GetParamBlockByID(BlockID id)
|
||||
//From ReferenceTarget
|
||||
RefTargetHandle plLayerTex::Clone(RemapDir &remap)
|
||||
{
|
||||
plLayerTex *mnew = TRACKED_NEW plLayerTex();
|
||||
plLayerTex *mnew = new plLayerTex();
|
||||
*((MtlBase*)mnew) = *((MtlBase*)this); // copy superclass stuff
|
||||
mnew->ReplaceReference(kRefBitmap, remap.CloneRef(fBitmapPB));
|
||||
mnew->ReplaceReference(kRefUVGen, remap.CloneRef(fUVGen));
|
||||
|
@ -135,7 +135,7 @@ public:
|
||||
GetClientRect( basis, &r );
|
||||
MapWindowPoints( basis, dlg, (POINT *)&r, 2 );
|
||||
|
||||
ctrl = TRACKED_NEW plDetailCurveCtrl( dlg, IDC_DETAIL_CURVE_CTRL, &r );
|
||||
ctrl = new plDetailCurveCtrl( dlg, IDC_DETAIL_CURVE_CTRL, &r );
|
||||
}
|
||||
|
||||
EnableWindow( GetDlgItem( dlg, IDC_DETAIL_CURVE_CTRL ), (BOOL)pblock->GetInt( kBmpUseDetail, t ) );
|
||||
@ -217,7 +217,7 @@ public:
|
||||
if (!pbbm->bm)
|
||||
pbbm->bm = TheManager->Load(&pbbm->bi);
|
||||
|
||||
BMCropper *cropper = TRACKED_NEW BMCropper(pblock);
|
||||
BMCropper *cropper = new BMCropper(pblock);
|
||||
|
||||
pbbm->bm->Display("Specify Cropping/Placement", BMM_CN, FALSE, TRUE, cropper);
|
||||
}
|
||||
|
@ -54,7 +54,7 @@ class plMAXCameraLayerClassDesc : public ClassDesc2
|
||||
{
|
||||
public:
|
||||
int IsPublic() { return TRUE; }
|
||||
void* Create(BOOL loading = FALSE) { return TRACKED_NEW plMAXCameraLayer(); }
|
||||
void* Create(BOOL loading = FALSE) { return new plMAXCameraLayer(); }
|
||||
const TCHAR* ClassName() { return GetString(IDS_MAX_CAMERA_LAYER); }
|
||||
SClass_ID SuperClassID() { return TEXMAP_CLASS_ID; }
|
||||
Class_ID ClassID() { return MAX_CAMERA_LAYER_CLASS_ID; }
|
||||
@ -272,7 +272,7 @@ IParamBlock2* plMAXCameraLayer::GetParamBlockByID(BlockID id)
|
||||
//From ReferenceTarget
|
||||
RefTargetHandle plMAXCameraLayer::Clone(RemapDir &remap)
|
||||
{
|
||||
plMAXCameraLayer *mnew = TRACKED_NEW plMAXCameraLayer();
|
||||
plMAXCameraLayer *mnew = new plMAXCameraLayer();
|
||||
*((MtlBase*)mnew) = *((MtlBase*)this); // copy superclass stuff
|
||||
mnew->ReplaceReference(kRefMain, remap.CloneRef(fParmsPB));
|
||||
BaseClone(this, mnew, remap);
|
||||
|
@ -170,7 +170,7 @@ void plPlasmaMAXLayer::IAddConversionTarget( plLayerInterface *target )
|
||||
if( fConversionTargets == nil )
|
||||
{
|
||||
// Create us a new container
|
||||
fConversionTargets = TRACKED_NEW plLayerTargetContainer;
|
||||
fConversionTargets = new plLayerTargetContainer;
|
||||
fConversionTargets->GetKey()->RefObject();
|
||||
}
|
||||
|
||||
|
@ -53,7 +53,7 @@ class plStaticEnvLayerClassDesc : public ClassDesc2
|
||||
{
|
||||
public:
|
||||
int IsPublic() { return TRUE; }
|
||||
void* Create(BOOL loading = FALSE) { return TRACKED_NEW plStaticEnvLayer(); }
|
||||
void* Create(BOOL loading = FALSE) { return new plStaticEnvLayer(); }
|
||||
const TCHAR* ClassName() { return GetString(IDS_STATIC_ENVMAP_LAYER); }
|
||||
SClass_ID SuperClassID() { return TEXMAP_CLASS_ID; }
|
||||
Class_ID ClassID() { return STATIC_ENV_LAYER_CLASS_ID; }
|
||||
@ -223,7 +223,7 @@ IParamBlock2* plStaticEnvLayer::GetParamBlockByID(BlockID id)
|
||||
//From ReferenceTarget
|
||||
RefTargetHandle plStaticEnvLayer::Clone(RemapDir &remap)
|
||||
{
|
||||
plStaticEnvLayer *mnew = TRACKED_NEW plStaticEnvLayer();
|
||||
plStaticEnvLayer *mnew = new plStaticEnvLayer();
|
||||
*((MtlBase*)mnew) = *((MtlBase*)this); // copy superclass stuff
|
||||
mnew->ReplaceReference(kRefBitmap, remap.CloneRef(fBitmapPB));
|
||||
mnew->ReplaceReference(kRefUVGen, remap.CloneRef(fUVGen));
|
||||
|
Reference in New Issue
Block a user