Mercurial > hg > svgui
comparison widgets/PluginParameterDialog.cpp @ 807:e4773943c9c1 warnfix_no_size_t
More unsigned/long and warning fixes
author | Chris Cannam |
---|---|
date | Tue, 17 Jun 2014 15:55:27 +0100 |
parents | 1a0dfcbffaf1 |
children | 4a578a360011 |
comparison
equal
deleted
inserted
replaced
806:4c8ca536b54f | 807:e4773943c9c1 |
---|---|
49 m_channel(-1), | 49 m_channel(-1), |
50 m_stepSize(0), | 50 m_stepSize(0), |
51 m_blockSize(0), | 51 m_blockSize(0), |
52 m_windowType(HanningWindow), | 52 m_windowType(HanningWindow), |
53 m_parameterBox(0), | 53 m_parameterBox(0), |
54 m_selectionOnly(false) | 54 m_currentSelectionOnly(false) |
55 { | 55 { |
56 setWindowTitle(tr("Plugin Parameters")); | 56 setWindowTitle(tr("Plugin Parameters")); |
57 | 57 |
58 QGridLayout *grid = new QGridLayout; | 58 QGridLayout *grid = new QGridLayout; |
59 setLayout(grid); | 59 setLayout(grid); |
538 { | 538 { |
539 return m_currentSelectionOnly; | 539 return m_currentSelectionOnly; |
540 } | 540 } |
541 | 541 |
542 void | 542 void |
543 PluginParameterDialog::getProcessingParameters(size_t &blockSize) const | 543 PluginParameterDialog::getProcessingParameters(int &blockSize) const |
544 { | 544 { |
545 blockSize = m_blockSize; | 545 blockSize = m_blockSize; |
546 return; | 546 return; |
547 } | 547 } |
548 | 548 |
549 void | 549 void |
550 PluginParameterDialog::getProcessingParameters(size_t &stepSize, | 550 PluginParameterDialog::getProcessingParameters(int &stepSize, |
551 size_t &blockSize, | 551 int &blockSize, |
552 WindowType &windowType) const | 552 WindowType &windowType) const |
553 { | 553 { |
554 stepSize = m_stepSize; | 554 stepSize = m_stepSize; |
555 blockSize = m_blockSize; | 555 blockSize = m_blockSize; |
556 windowType = m_windowType; | 556 windowType = m_windowType; |