Mercurial > hg > svgui
comparison widgets/ModelDataTableDialog.cpp @ 1538:0ca4ca37809e
Avoid compiler warning
author | Chris Cannam |
---|---|
date | Tue, 15 Oct 2019 14:51:58 +0100 |
parents | 5a215033b853 |
children |
comparison
equal
deleted
inserted
replaced
1537:4f8c72adbf43 | 1538:0ca4ca37809e |
---|---|
285 #ifdef DEBUG_MODEL_DATA_TABLE_DIALOG | 285 #ifdef DEBUG_MODEL_DATA_TABLE_DIALOG |
286 SVDEBUG << "ModelDataTableDialog::currentChanged: from " | 286 SVDEBUG << "ModelDataTableDialog::currentChanged: from " |
287 << previous.row() << ", " << previous.column() | 287 << previous.row() << ", " << previous.column() |
288 << " to " << current.row() << ", " << current.column() | 288 << " to " << current.row() << ", " << current.column() |
289 << endl; | 289 << endl; |
290 #else | |
291 (void)previous; // unused | |
290 #endif | 292 #endif |
291 m_currentRow = current.row(); | 293 m_currentRow = current.row(); |
292 m_table->setCurrentRow(m_currentRow); | 294 m_table->setCurrentRow(m_currentRow); |
293 } | 295 } |
294 | 296 |