comparison widgets/PluginParameterDialog.cpp @ 810:b68af2be4545 tonioni

Merge from branch warnfix_no_size_t
author Chris Cannam
date Wed, 18 Jun 2014 13:42:25 +0100
parents e4773943c9c1
children 4a578a360011
comparison
equal deleted inserted replaced
802:584b11df8e4f 810:b68af2be4545
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;