comparison widgets/PluginParameterDialog.h @ 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 035d62c4cddf
children a18e78b9c78b
comparison
equal deleted inserted replaced
806:4c8ca536b54f 807:e4773943c9c1
68 QString getInputModel() const; 68 QString getInputModel() const;
69 bool getSelectionOnly() const; 69 bool getSelectionOnly() const;
70 70
71 //!!! merge with PluginTransform::ExecutionContext 71 //!!! merge with PluginTransform::ExecutionContext
72 72
73 void getProcessingParameters(size_t &blockSize) const; 73 void getProcessingParameters(int &blockSize) const;
74 void getProcessingParameters(size_t &stepSize, size_t &blockSize, 74 void getProcessingParameters(int &stepSize, int &blockSize,
75 WindowType &windowType) const; 75 WindowType &windowType) const;
76 76
77 int exec(); 77 int exec();
78 78
79 signals: 79 signals:
94 94
95 protected: 95 protected:
96 Vamp::PluginBase *m_plugin; 96 Vamp::PluginBase *m_plugin;
97 97
98 int m_channel; 98 int m_channel;
99 size_t m_stepSize; 99 int m_stepSize;
100 size_t m_blockSize; 100 int m_blockSize;
101 101
102 WindowType m_windowType; 102 WindowType m_windowType;
103 PluginParameterBox *m_parameterBox; 103 PluginParameterBox *m_parameterBox;
104 104
105 QLabel *m_outputLabel; 105 QLabel *m_outputLabel;