summaryrefslogtreecommitdiff
path: root/src/sample.cc
diff options
context:
space:
mode:
authorsenator <muldjordlars@gmail.com>2014-11-05 22:42:36 +0100
committersenator <muldjordlars@gmail.com>2014-11-05 22:42:36 +0100
commitd57b48bb2029040bc38d1adefd2136e5fd334760 (patch)
treecfc8d8a24cb53354932d821f340a5930b48deb40 /src/sample.cc
parent9907626a2ee3a5a0ed08ad79dec7a7071939df23 (diff)
Removed all unused variables from classes and also removed a couple of debug printfsmetadata_v1
Diffstat (limited to 'src/sample.cc')
-rw-r--r--src/sample.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sample.cc b/src/sample.cc
index d50137d..aaa7c4b 100644
--- a/src/sample.cc
+++ b/src/sample.cc
@@ -31,9 +31,9 @@
#include <sndfile.h>
-Sample::Sample(std::string name, float power)
+Sample::Sample(std::string id, float power)
{
- this->name = name;
+ this->id = id;
this->power = power;
}