Skip to content

Commit

Permalink
fix shadowing build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bhaller committed Jul 19, 2024
1 parent 495a043 commit cc6f8b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions QtSLiM/QtSLiMDebugOutputWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -537,8 +537,8 @@ void QtSLiMDebugOutputWindow::logFileRightClick(const QPoint &pos)
else if (action) // graphData2DAction
{
// all values are convertible to double; guaranteed above
QVariant data = action->data();
int xColumnIndex = data.toInt();
QVariant actiondata = action->data();
int xColumnIndex = actiondata.toInt();
bool makeScatterPlot = false;

if (xColumnIndex >= 10000)
Expand Down

0 comments on commit cc6f8b9

Please sign in to comment.