From: vsr Date: Fri, 26 Oct 2012 13:26:08 +0000 (+0000) Subject: IPAL 0051559: Fix Fatal Error on "Show Only" popup menu command caused by referencing... X-Git-Tag: pal21808_v1~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=16556d34fb5e01fbf6daedd0751dd60d9a87baac;p=modules%2Fgui.git IPAL 0051559: Fix Fatal Error on "Show Only" popup menu command caused by referencing to the uninitialized variable. --- 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() );