diff 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
line wrap: on
line diff
--- a/widgets/PluginParameterDialog.h	Tue Jun 17 15:36:56 2014 +0100
+++ b/widgets/PluginParameterDialog.h	Tue Jun 17 15:55:27 2014 +0100
@@ -70,8 +70,8 @@
 
     //!!! merge with PluginTransform::ExecutionContext
 
-    void getProcessingParameters(size_t &blockSize) const;
-    void getProcessingParameters(size_t &stepSize, size_t &blockSize,
+    void getProcessingParameters(int &blockSize) const;
+    void getProcessingParameters(int &stepSize, int &blockSize,
                                  WindowType &windowType) const;
 
     int exec();
@@ -96,8 +96,8 @@
     Vamp::PluginBase *m_plugin;
 
     int m_channel;
-    size_t m_stepSize;
-    size_t m_blockSize;
+    int m_stepSize;
+    int m_blockSize;
 
     WindowType m_windowType;
     PluginParameterBox *m_parameterBox;