Skip to content
Snippets Groups Projects
Commit 16e1e61d authored by Stéphane Albert's avatar Stéphane Albert
Browse files

ENH: Fixed broken signal/slot connections.

parent fb011812
No related branches found
No related tags found
No related merge requests found
......@@ -1331,7 +1331,7 @@ MainWindow
QObject::connect(
m_ImageView,
SIGNAL( RenderingContextChanged( const PointType&, double ) ),
vectorImageModel,
model,
SLOT( OnRenderingContextChanged(const PointType&, double ))
);
}
......
......@@ -282,7 +282,7 @@ HistogramWidget
);
QObject::connect(
m_PlotPicker, SIGNAL( selected( const QwtArray< QwtDoublePoint >& ) ),
this, SLOT( OnSelected( const QwtArray< QwtDoublePolygon >& ) )
this, SLOT( OnSelected( const QwtArray< QwtDoublePoint >& ) )
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment