summaryrefslogtreecommitdiff
path: root/muse/al
diff options
context:
space:
mode:
authorWerner Schweer <ws.seh.de>2006-10-22 20:16:27 +0000
committerWerner Schweer <ws.seh.de>2006-10-22 20:16:27 +0000
commit7209944860501af4868f166f4cff59559bdb567e (patch)
tree35252bf18e68b889804ad8dafdf9960844f42d4d /muse/al
parentc2d6008866220931f7a9fddcce4ca50b4355aac2 (diff)
updates
Diffstat (limited to 'muse/al')
-rw-r--r--muse/al/pos.cpp8
-rw-r--r--muse/al/pos.h1
2 files changed, 0 insertions, 9 deletions
diff --git a/muse/al/pos.cpp b/muse/al/pos.cpp
index eb3629c2..ffd29c3b 100644
--- a/muse/al/pos.cpp
+++ b/muse/al/pos.cpp
@@ -38,14 +38,6 @@ Pos::Pos()
sn = -1;
}
-Pos::Pos(const Pos& p)
- {
- _type = p._type;
- sn = p.sn;
- _tick = p._tick;
- _frame = p._frame;
- }
-
Pos::Pos(unsigned t, TType timeType)
{
_type = timeType;
diff --git a/muse/al/pos.h b/muse/al/pos.h
index a771fc4b..6d69cc52 100644
--- a/muse/al/pos.h
+++ b/muse/al/pos.h
@@ -48,7 +48,6 @@ class Pos {
public:
Pos();
- Pos(const Pos&);
Pos(int measure, int beat, int tick);
Pos(int minute, int sec, int frame, int subframe);
Pos(unsigned, TType type = TICKS);