aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/xsample/source/record.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2002-11-26 22:35:57 +0000
committerThomas Grill <xovo@users.sourceforge.net>2002-11-26 22:35:57 +0000
commit7017ea71b842451548451125d10acd5c27086e3b (patch)
treeee55af9f9f4f9b2b1c060545763e553a85e6963d /externals/grill/xsample/source/record.cpp
parentae094b15eab3b833bf69a8c26492dc022d09e5fb (diff)
""
svn path=/trunk/; revision=262
Diffstat (limited to 'externals/grill/xsample/source/record.cpp')
-rw-r--r--externals/grill/xsample/source/record.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/externals/grill/xsample/source/record.cpp b/externals/grill/xsample/source/record.cpp
index cc3543a3..869ca3d2 100644
--- a/externals/grill/xsample/source/record.cpp
+++ b/externals/grill/xsample/source/record.cpp
@@ -22,7 +22,7 @@ class xrecord:
FLEXT_HEADER(xrecord,xsample)
public:
- xrecord(I argc,t_atom *argv);
+ xrecord(I argc,const t_atom *argv);
virtual BL Init();
@@ -33,7 +33,7 @@ public:
virtual V m_help();
virtual V m_print();
- virtual I m_set(I argc,t_atom *argv);
+ virtual I m_set(I argc,const t_atom *argv);
virtual V m_pos(F pos);
virtual V m_all();
@@ -51,7 +51,7 @@ public:
virtual V m_loop(BL lp) { doloop = lp; }
virtual V m_append(BL app) { if(!(appmode = app)) m_pos(0); }
- virtual V m_draw(I argc,t_atom *argv);
+ virtual V m_draw(I argc,const t_atom *argv);
protected:
I inchns;
@@ -105,7 +105,7 @@ V xrecord::setup(t_class *)
}
*/
-xrecord::xrecord(I argc,t_atom *argv):
+xrecord::xrecord(I argc,const t_atom *argv):
dorec(false),
sigmode(false),mixmode(false),
appmode(true),doloop(false),
@@ -211,7 +211,7 @@ V xrecord::m_pos(F pos)
}
-I xrecord::m_set(I argc,t_atom *argv)
+I xrecord::m_set(I argc,const t_atom *argv)
{
I r = xsample::m_set(argc,argv);
if(r < 0) m_reset(); // resets pos/min/max
@@ -242,7 +242,7 @@ BL xrecord::m_reset()
return xsample::m_reset();
}
-V xrecord::m_draw(I argc,t_atom *argv)
+V xrecord::m_draw(I argc,const t_atom *argv)
{
if(argc >= 1) {
drintv = GetInt(argv[0]);