From a4a2b601a9110dce9dc08c907a70c4ea8d8b7bcb Mon Sep 17 00:00:00 2001 From: kevin Date: Sat, 28 Sep 2013 12:34:03 -0700 Subject: [PATCH] cmGrPlotAudio.c : The audio plot object no longer uses the underlying graphic objects 'user' pointer. This was a bug because the user of the audio object itself might use this pointer thereby overwrite the pointer set internally by the audio object. --- cmGrPlotAudio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmGrPlotAudio.c b/cmGrPlotAudio.c index 963205c..2866bd9 100644 --- a/cmGrPlotAudio.c +++ b/cmGrPlotAudio.c @@ -178,7 +178,7 @@ cmGrPlRC_t cmGrPlotAudioFileObjCreate( op->isInsideCbArg = cmGrObjIsInsideCbArg(grObjH); cmGrObjSetIsInsideCb( grObjH, _cmGrPlObjAfIsInside, op ); - cmGrPlotObjSetUserPtr(oH,op); + //cmGrPlotObjSetUserPtr(oH,op); return kOkGrPlRC; }