From 16556d34fb5e01fbf6daedd0751dd60d9a87baac Mon Sep 17 00:00:00 2001 From: vsr Date: Fri, 26 Oct 2012 13:26:08 +0000 Subject: [PATCH] IPAL 0051559: Fix Fatal Error on "Show Only" popup menu command caused by referencing to the uninitialized variable. --- src/Plot2d/Plot2d_ViewFrame.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Plot2d/Plot2d_ViewFrame.cxx b/src/Plot2d/Plot2d_ViewFrame.cxx index 6d00a5937..15f0e68d7 100755 --- a/src/Plot2d/Plot2d_ViewFrame.cxx +++ b/src/Plot2d/Plot2d_ViewFrame.cxx @@ -2846,7 +2846,8 @@ public: */ Plot2d_Plot2d::Plot2d_Plot2d( QWidget* parent ) : QwtPlot( parent ), - myIsPolished( false ) + myIsPolished( false ), + myPicker( 0 ) { // Create alternative scales setAxisScaleDraw( QwtPlot::yLeft, new Plot2d_ScaleDraw() ); -- 2.39.2